Línea 147... |
Línea 147... |
147 |
|
147 |
|
148 |
|
148 |
|
149 |
$queryMapper = QueryMapper::getInstance($this->adapter);
|
149 |
$queryMapper = QueryMapper::getInstance($this->adapter);
|
150 |
$select = $queryMapper->getSql()->select();
|
150 |
$select = $queryMapper->getSql()->select();
|
151 |
$select->from(['tb1' => RecruitmentSelectionVacancyMapper::_TABLE]);
|
151 |
$select->from(['tb1' => RecruitmentSelectionVacancyMapper::_TABLE]);
|
Línea 152... |
Línea 152... |
152 |
$select->columns(['uuid', 'name', 'last_date', 'sta tus']);
|
152 |
$select->columns(['uuid', 'name', 'last_date', 'status']);
|
Línea 153... |
Línea 153... |
153 |
$select->join(['tb2' => JobDescriptionMapper::_TABLE], 'tb1.job_description_id = tb2.id AND tb1.company_id = tb2.company_id', ['job_description' => 'name']);
|
153 |
$select->join(['tb2' => JobDescriptionMapper::_TABLE], 'tb1.job_description_id = tb2.id AND tb1.company_id = tb2.company_id', ['job_description' => 'name']);
|