Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 542 | Rev 561 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 542 Rev 553
Línea 415... Línea 415...
415
        //Generate New PDF
415
        //Generate New PDF
416
        $pdf = new SelfEvaluationPDF();
416
        $pdf = new SelfEvaluationPDF();
Línea 417... Línea 417...
417
 
417
 
418
        $pdf->AliasNbPages();
418
        $pdf->AliasNbPages();
419
        $pdf->AddPage();
419
        $pdf->AddPage();
420
        
420
 
421
        // Set header secundary
421
        // Set header secundary
Línea 422... Línea 422...
422
        $pdf->customHeader($headerFormName, $headerUserName);
422
        $pdf->customHeader($headerFormName, $headerUserName);
423
 
423
 
Línea 445... Línea 445...
445
 
445
 
446
            $values = [$valueSection, $totalQuestion];
446
            $values = [$valueSection, $totalQuestion];
Línea 447... Línea 447...
447
            $valueFormQuestions = $valueFormQuestions + $totalQuestion;
447
            $valueFormQuestions = $valueFormQuestions + $totalQuestion;
448
 
448
 
449
 
449
 
450
            $filename = 'data' . DIRECTORY_SEPARATOR . 'self-evaluation'. $sections[$i]['slug_section'] . '.png';
450
            $filename = 'data' . DIRECTORY_SEPARATOR . 'self-evaluation' . $sections[$i]['slug_section'] . '.png';
451
            $pdf->PieChart($labels, $values,'',$filename);
451
            $pdf->PieChart($labels, $values, '', $filename);
452
            $pdf->SetFont('Arial', '', 8);
452
            $pdf->SetFont('Arial', '', 8);
453
            $pdf->Cell(190, 10, utf8_decode($sections[$i]['name']), 0, 0, 'C');
453
            $pdf->Cell(190, 10, utf8_decode($sections[$i]['name']), 0, 0, 'C');
Línea 467... Línea 467...
467
        $pdf->setY($pdf->getY() + 10);
467
        $pdf->setY($pdf->getY() + 10);
Línea 468... Línea 468...
468
 
468
 
Línea 469... Línea 469...
469
 
469
 
470
        $values = [$valueFormSections, $valueFormQuestions];
470
        $values = [$valueFormSections, $valueFormQuestions];
471
 
471
 
472
        $filenameGeneral = 'data' . DIRECTORY_SEPARATOR . 'self-evaluation'. uniqid() . '.png';
472
        $filenameGeneral = 'data' . DIRECTORY_SEPARATOR . 'self-evaluation' . uniqid() . '.png';
Línea 473... Línea -...
473
        $pdf->PieChart($labels, $values, '', $filenameGeneral);
-
 
474
        $pdf->Image($filenameGeneral, 60, $pdf->getY(), 90);
-
 
Línea -... Línea 473...
-
 
473
        $pdf->PieChart($labels, $values, '', $filenameGeneral);
-
 
474
        $pdf->Image($filenameGeneral, 60, $pdf->getY(), 90);
475
        $pdf->setY($pdf->getY() + 60);
475
        $pdf->setY($pdf->getY() + 60);
476
 
476
 
477
        
477
 
478
        if($companySelfEvaluationTest->comments){
-
 
479
 
-
 
480
            $pdf->SetFont('Arial','B', 10);
-
 
481
            $pdf->Cell(190,10, utf8_decode('Comentarios finales'),0,0,'C');
-
 
Línea -... Línea 478...
-
 
478
        if ($companySelfEvaluationTest->comments) {
-
 
479
 
-
 
480
            $pdf->SetFont('Arial', 'B', 10);
482
            $pdf->setY($pdf->getY() + 10);
481
            $pdf->Cell(190, 10, utf8_decode('Comentarios finales'), 0, 0, 'C');
483
            
482
            $pdf->setY($pdf->getY() + 10);
484
            $pdf->SetFont('Arial','', 8);
483
 
485
            $pdf->MultiCell(180,  8, utf8_decode($companySelfEvaluationTest->comments));
484
            $pdf->SetFont('Arial', '', 8);
Línea 486... Línea 485...
486
            $pdf->setY(60);
485
            $pdf->MultiCell(180, 8, utf8_decode($companySelfEvaluationTest->comments));
487
 
486
            $pdf->setY(60);