Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1225 Rev 1226
Línea 230... Línea 230...
230
    {
230
    {
231
        $prototype = new RecruitmentSelectionInterview();
231
        $prototype = new RecruitmentSelectionInterview();
232
        $select = $this->sql->select();
232
        $select = $this->sql->select();
233
        $select->columns(['uuid' => 'i.uuid']);
233
        $select->columns(['uuid' => 'i.uuid']);
234
        $select->from(['i' => self::_TABLE]);
234
        $select->from(['i' => self::_TABLE]);
235
        die("Test");
235
        die(RecruitmentSelectionCandidateMapper::_TABLE);
236
        $select->join(['c', RecruitmentSelectionCandidateMapper::_TABLE], "i.candidate_id = c.id", ['c.first_name']);
236
        $select->join(['c', RecruitmentSelectionCandidateMapper::_TABLE], "i.candidate_id = c.id", ['c.first_name']);
237
        $select->where->equalTo('company_id', $companyId);
237
        $select->where->equalTo('company_id', $companyId);
238
        echo $select->getSqlString($this->adapter->platform); exit;
238
        echo $select->getSqlString($this->adapter->platform); exit;
Línea 239... Línea 239...
239
        
239