| 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 -... |
Línea 362... |
| - |
|
362 |
$recruitmentCandidate->job_description_id = $jobDescription->uuid;
|
| - |
|
363 |
|
| - |
|
364 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
| - |
|
365 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid( $dataPost['job_category_id']);
|
| - |
|
366 |
$recruitmentForm->job_category_id = $jobCategory->uuid;
|
| - |
|
367 |
|
| - |
|
368 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
| - |
|
369 |
$industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
|
| 362 |
$recruitmentCandidate->job_description_id = $jobDescription->id;
|
370 |
$recruitmentForm->industry_id = $industry->uuid;
|
| - |
|
371 |
|
| - |
|
372 |
$recruitmentCandidate->job_description_id = $jobDescription->uuid;
|
| Línea 363... |
Línea 373... |
| 363 |
|
373 |
$recruitmentCandidate->job_category_id = $jobCategory->uuid;
|
| Línea 364... |
Línea 374... |
| 364 |
$recruitmentCandidate->job_description_id = $jobDescription->id;
|
374 |
$recruitmentCandidate->industry = $industry->uuid;
|
| 365 |
|
375 |
|