| Línea 232... |
Línea 232... |
| 232 |
}
|
232 |
}
|
| Línea 233... |
Línea 233... |
| 233 |
|
233 |
|
| 234 |
$recruitmentForm = new RecruitmentSelectionVacancy();
|
234 |
$recruitmentForm = new RecruitmentSelectionVacancy();
|
| Línea 235... |
Línea 235... |
| 235 |
$hydrator->hydrate($dataPost, $recruitmentForm);
|
235 |
$hydrator->hydrate($dataPost, $recruitmentForm);
|
| 236 |
|
236 |
|
| Línea 237... |
Línea 237... |
| 237 |
$recruitmentForm->location_id = $location->id;
|
237 |
$recruitmentForm->location_id = $location->uuid;
|
| 238 |
$recruitmentForm->company_id = $currentCompany->id;
|
238 |
$recruitmentForm->company_id = $currentCompany->uuid;
|
| 239 |
|
239 |
|
| Línea 357... |
Línea 357... |
| 357 |
$recruitmentCandidate->status = RecruitmentSelectionVacancy::STATUS_INACTIVE;
|
357 |
$recruitmentCandidate->status = RecruitmentSelectionVacancy::STATUS_INACTIVE;
|
| 358 |
}
|
358 |
}
|
| Línea 359... |
Línea 359... |
| 359 |
|
359 |
|
| 360 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
360 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
| 361 |
$jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
|
361 |
$jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
|
| Línea 362... |
Línea 362... |
| 362 |
$recruitmentCandidate->job_description_id = $jobDescription->uuid;
|
362 |
$recruitmentCandidate->job_description_id = $jobDescription->id;
|
| 363 |
|
363 |
|
| 364 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
364 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
| Línea 365... |
Línea 365... |
| 365 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid( $dataPost['job_category_id']);
|
365 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid( $dataPost['job_category_id']);
|
| 366 |
$recruitmentForm->job_category_id = $jobCategory->uuid;
|
366 |
$recruitmentForm->job_category_id = $jobCategory->id;
|
| 367 |
|
367 |
|
| Línea 368... |
Línea 368... |
| 368 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
368 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
| 369 |
$industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
|
369 |
$industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
|
| 370 |
$recruitmentForm->industry_id = $industry->uuid;
|
370 |
$recruitmentForm->industry_id = $industry->id;
|
| Línea 371... |
Línea 371... |
| 371 |
|
371 |
|
| Línea 372... |
Línea 372... |
| 372 |
$recruitmentCandidate->job_description_id = $jobDescription->uuid;
|
372 |
$recruitmentCandidate->job_description_id = $jobDescription->id;
|
| 373 |
$recruitmentCandidate->job_category_id = $jobCategory->uuid;
|
373 |
$recruitmentCandidate->job_category_id = $jobCategory->id;
|