Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1281 Rev 1282
Línea 672... Línea 672...
672
 
672
 
673
        $pdf->AliasNbPages();
673
        $pdf->AliasNbPages();
Línea 674... Línea 674...
674
        $pdf->AddPage();
674
        $pdf->AddPage();
675
 
-
 
676
 
-
 
677
        
-
 
678
        // add section signature
-
 
679
        $pdf->sectionSignature();
675
 
680
        
676
 
681
        
677
       
682
        $rows = [
678
        $rows = [
683
            array(
679
            array(
Línea 705... Línea 701...
705
                'content' => date("d/m/Y")
701
                'content' => date("d/m/Y")
706
            )
702
            )
707
        ];
703
        ];
Línea 708... Línea 704...
708
 
704
 
-
 
705
        $pdf->borderTable('EVALUACIÓN DE DESEMPEÑO', $rows);
-
 
706
        
-
 
707
        
Línea -... Línea 708...
-
 
708
        $sections = json_decode($performanceEvaluation->content, true);
-
 
709
 
-
 
710
                    for ($i = 0; $i < count($sections); $i++) {
Línea -... Línea 711...
-
 
711
                        
Línea 709... Línea 712...
709
        $pdf->borderTable('EVALUACIÓN DE DESEMPEÑO', $rows);
712
                        $pdf->singleTable($sections[$i]['title'], $sections[$i]['text']);
710
 
713