Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 4240 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4240 Rev 4247
Línea 852... Línea 852...
852
            default :
852
            default :
853
                $type = "ERROR";
853
                $type = "ERROR";
854
                break;
854
                break;
855
        }
855
        }
Línea -... Línea 856...
-
 
856
 
-
 
857
        switch ($interviewEvaluation->points) {
-
 
858
            case "0":
-
 
859
                $points = "Sugerir otro cargo";
-
 
860
                break;
-
 
861
            case "1":
-
 
862
                $points = "25%";
-
 
863
                break;
-
 
864
            case "2":
-
 
865
                $points = "50%";
-
 
866
                break;
-
 
867
            case "3":
-
 
868
                $points = "75%";
-
 
869
                break;
-
 
870
            case "4":
-
 
871
                $points = "100%";
-
 
872
                break;
-
 
873
            default :
-
 
874
                $points = "ERROR";
-
 
875
                break;
-
 
876
        }
856
 
877
 
857
        $rows = [
878
        $rows = [
858
            array(
879
            array(
859
                'title' => 'Nombre Evaluado: ',
880
                'title' => 'Nombre Evaluado: ',
860
                'content' => $candidate ? ' ' . $candidate->first_name . ' ' . $candidate->last_name : 'No Aplica'
881
                'content' => $candidate ? ' ' . $candidate->first_name . ' ' . $candidate->last_name : 'No Aplica'
Línea 875... Línea 896...
875
                'title' => 'Comentarios del entrevistador: ',
896
                'title' => 'Comentarios del entrevistador: ',
876
                'content' => $interviewEvaluation ? ' ' . $interviewEvaluation->comment : 'No Aplica'
897
                'content' => $interviewEvaluation ? ' ' . $interviewEvaluation->comment : 'No Aplica'
877
            ),
898
            ),
878
            array(
899
            array(
879
                'title' => 'Porcentage de adaptibilidad ',
900
                'title' => 'Porcentage de adaptibilidad ',
880
                'content' => $interviewEvaluation ? ' ' . $interviewEvaluation->points : 'No Aplica'
901
                'content' => $points
881
            )
902
            )
882
        ];
903
        ];
Línea 883... Línea 904...
883
 
904