Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 4369 Rev 4372
Línea 479... Línea 479...
479
        $recruitmentSelectionInterviewMapper = RecruitmentSelectionInterviewMapper::getInstance($this->adapter);      
479
        $recruitmentSelectionInterviewMapper = RecruitmentSelectionInterviewMapper::getInstance($this->adapter);      
480
        $interviews = $recruitmentSelectionInterviewMapper->fetchAllByCandidateIdAndVacancyId($candidate->id, $vacancy->id);
480
        $interviews = $recruitmentSelectionInterviewMapper->fetchAllByCandidateIdAndVacancyId($candidate->id, $vacancy->id);
Línea 481... Línea 481...
481
 
481
 
482
        return new JsonModel([
482
        return new JsonModel([
483
            'success' => true,
483
            'success' => true,
484
            'data' => count($interviews) > 0 ? 'LABEL_INTERVIEW_BOSS' : 'LABEL_HUMAN_RESOURCES',
484
            'data' => count($interviews) > 0 ? 'Entrevista por el Jefe' : 'Entrevista por Recursos Humanos',
485
        ]);
485
        ]);
Línea 486... Línea 486...
486
    }
486
    }
487
 
487