| Línea 411... |
Línea 411... |
| 411 |
|
411 |
|
| 412 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
412 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
| Línea 413... |
Línea 413... |
| 413 |
$jobDescription = $jobDescriptionMapper->fetchOne($recruitmentCandidate->job_description_id);
|
413 |
$jobDescription = $jobDescriptionMapper->fetchOne($recruitmentCandidate->job_description_id);
|
| 414 |
|
414 |
|
| Línea 415... |
Línea 415... |
| 415 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
415 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
| 416 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid($recruitmentCandidate->job_category_id);
|
416 |
$jobCategory = $jobCategoryMapper->fetchOne($recruitmentCandidate->job_category_id);
|
| Línea 417... |
Línea 417... |
| 417 |
|
417 |
|
| 418 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
418 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
| 419 |
$industry = $industryMapper->fetchOneByUuid($recruitmentCandidate->industry_id);
|
419 |
$industry = $industryMapper->fetchOne($recruitmentCandidate->industry_id);
|
| Línea 432... |
Línea 432... |
| 432 |
'success' => true,
|
432 |
'success' => true,
|
| 433 |
'data' => [
|
433 |
'data' => [
|
| 434 |
'id' => $recruitmentCandidate->uuid,
|
434 |
'id' => $recruitmentCandidate->uuid,
|
| 435 |
'name' => $recruitmentCandidate->name,
|
435 |
'name' => $recruitmentCandidate->name,
|
| 436 |
'company'=>$currentCompany->id,
|
436 |
'company'=>$currentCompany->id,
|
| 437 |
'job_description_id' => $recruitmentCandidate->job_description_id,
|
437 |
'job_description_id' => $jobDescription->uuid,
|
| 438 |
'location_search' => $location->formatted_address,
|
438 |
'location_search' => $location->formatted_address,
|
| 439 |
'job_category_id' => $recruitmentCandidate->job_category_id,
|
439 |
'job_category_id' => $jobCategory->uuid,
|
| 440 |
'description' => $recruitmentCandidate->description,
|
440 |
'description' => $recruitmentCandidate->description,
|
| 441 |
'industry_id' => $recruitmentCandidate->industry_id,
|
441 |
'industry_id' => $industry->uuid,
|
| 442 |
'last_date' => $recruitmentCandidate->last_date,
|
442 |
'last_date' => $recruitmentCandidate->last_date,
|
| 443 |
'status' => $recruitmentCandidate->status,
|
443 |
'status' => $recruitmentCandidate->status,
|
| 444 |
// 'content' => $recruitmentCandidate->content ? json_decode($recruitmentCandidate->content) : [],
|
444 |
// 'content' => $recruitmentCandidate->content ? json_decode($recruitmentCandidate->content) : [],
|
| 445 |
]
|
445 |
]
|
| 446 |
];
|
446 |
];
|