1384 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace LeadersLinked\Controller;
|
|
|
6 |
|
|
|
7 |
use Laminas\Db\Adapter\AdapterInterface;
|
16768 |
efrain |
8 |
|
1384 |
efrain |
9 |
use Laminas\Mvc\Controller\AbstractActionController;
|
|
|
10 |
use Laminas\Log\LoggerInterface;
|
|
|
11 |
use Laminas\View\Model\ViewModel;
|
|
|
12 |
use Laminas\View\Model\JsonModel;
|
15457 |
efrain |
13 |
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionVacancyForm;
|
1384 |
efrain |
14 |
use LeadersLinked\Library\Functions;
|
1386 |
eleazar |
15 |
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
|
1387 |
eleazar |
16 |
use LeadersLinked\Model\RecruitmentSelectionVacancy;
|
1384 |
efrain |
17 |
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
|
|
|
18 |
use LeadersLinked\Model\Location;
|
15461 |
efrain |
19 |
use LeadersLinked\Mapper\BehaviorMapper;
|
|
|
20 |
use LeadersLinked\Mapper\CompetencyMapper;
|
|
|
21 |
use LeadersLinked\Mapper\CompetencyTypeMapper;
|
|
|
22 |
use LeadersLinked\Mapper\JobDescriptionCompetencyBehaviorMapper;
|
|
|
23 |
use LeadersLinked\Mapper\JobDescriptionCompetencyMapper;
|
|
|
24 |
use LeadersLinked\Mapper\JobDescriptionSubordinateMapper;
|
1384 |
efrain |
25 |
use LeadersLinked\Mapper\LocationMapper;
|
|
|
26 |
use LeadersLinked\Mapper\IndustryMapper;
|
|
|
27 |
use LeadersLinked\Mapper\JobDescriptionMapper;
|
|
|
28 |
use LeadersLinked\Mapper\JobCategoryMapper;
|
15457 |
efrain |
29 |
use Laminas\Paginator\Adapter\DbSelect;
|
|
|
30 |
use Laminas\Paginator\Paginator;
|
|
|
31 |
use LeadersLinked\Mapper\QueryMapper;
|
|
|
32 |
use Laminas\Hydrator\ArraySerializableHydrator;
|
|
|
33 |
use Laminas\Db\ResultSet\HydratingResultSet;
|
1384 |
efrain |
34 |
|
12314 |
stevensc |
35 |
class RecruitmentSelectionVacancyController extends AbstractActionController
|
|
|
36 |
{
|
1384 |
efrain |
37 |
|
|
|
38 |
/**
|
|
|
39 |
*
|
16769 |
efrain |
40 |
* @var \Laminas\Db\Adapter\AdapterInterface
|
1384 |
efrain |
41 |
*/
|
|
|
42 |
private $adapter;
|
16768 |
efrain |
43 |
|
1384 |
efrain |
44 |
/**
|
|
|
45 |
*
|
16769 |
efrain |
46 |
* @var \LeadersLinked\Cache\CacheInterface
|
1384 |
efrain |
47 |
*/
|
16769 |
efrain |
48 |
private $cache;
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
/**
|
|
|
52 |
*
|
|
|
53 |
* @var \Laminas\Log\LoggerInterface
|
|
|
54 |
*/
|
1384 |
efrain |
55 |
private $logger;
|
16768 |
efrain |
56 |
|
1384 |
efrain |
57 |
/**
|
|
|
58 |
*
|
|
|
59 |
* @var array
|
|
|
60 |
*/
|
|
|
61 |
private $config;
|
16768 |
efrain |
62 |
|
16769 |
efrain |
63 |
|
1384 |
efrain |
64 |
/**
|
|
|
65 |
*
|
16769 |
efrain |
66 |
* @var \Laminas\Mvc\I18n\Translator
|
|
|
67 |
*/
|
|
|
68 |
private $translator;
|
|
|
69 |
|
|
|
70 |
|
|
|
71 |
/**
|
|
|
72 |
*
|
|
|
73 |
* @param \Laminas\Db\Adapter\AdapterInterface $adapter
|
|
|
74 |
* @param \LeadersLinked\Cache\CacheInterface $cache
|
|
|
75 |
* @param \Laminas\Log\LoggerInterface LoggerInterface $logger
|
1384 |
efrain |
76 |
* @param array $config
|
16769 |
efrain |
77 |
* @param \Laminas\Mvc\I18n\Translator $translator
|
1384 |
efrain |
78 |
*/
|
16769 |
efrain |
79 |
public function __construct($adapter, $cache, $logger, $config, $translator)
|
12314 |
stevensc |
80 |
{
|
16769 |
efrain |
81 |
$this->adapter = $adapter;
|
|
|
82 |
$this->cache = $cache;
|
|
|
83 |
$this->logger = $logger;
|
|
|
84 |
$this->config = $config;
|
|
|
85 |
$this->translator = $translator;
|
1384 |
efrain |
86 |
}
|
|
|
87 |
|
12314 |
stevensc |
88 |
public function indexAction()
|
|
|
89 |
{
|
1384 |
efrain |
90 |
$request = $this->getRequest();
|
|
|
91 |
$currentUserPlugin = $this->plugin('currentUserPlugin');
|
|
|
92 |
$currentCompany = $currentUserPlugin->getCompany();
|
|
|
93 |
$currentUser = $currentUserPlugin->getUser();
|
|
|
94 |
|
|
|
95 |
|
|
|
96 |
$request = $this->getRequest();
|
|
|
97 |
if ($request->isGet()) {
|
|
|
98 |
$sandbox = $this->config['leaderslinked.runmode.sandbox'];
|
12314 |
stevensc |
99 |
if ($sandbox) {
|
1384 |
efrain |
100 |
$google_map_key = $this->config['leaderslinked.google_map.sandbox_api_key'];
|
|
|
101 |
} else {
|
|
|
102 |
$google_map_key = $this->config['leaderslinked.google_map.production_api_key'];
|
|
|
103 |
}
|
|
|
104 |
|
12314 |
stevensc |
105 |
|
1384 |
efrain |
106 |
$headers = $request->getHeaders();
|
|
|
107 |
|
|
|
108 |
$isJson = false;
|
|
|
109 |
if ($headers->has('Accept')) {
|
|
|
110 |
$accept = $headers->get('Accept');
|
|
|
111 |
|
|
|
112 |
$prioritized = $accept->getPrioritized();
|
|
|
113 |
|
|
|
114 |
foreach ($prioritized as $key => $value) {
|
|
|
115 |
$raw = trim($value->getRaw());
|
|
|
116 |
|
|
|
117 |
if (!$isJson) {
|
|
|
118 |
$isJson = strpos($raw, 'json');
|
|
|
119 |
}
|
|
|
120 |
}
|
|
|
121 |
}
|
|
|
122 |
|
|
|
123 |
//$isJson = true;
|
|
|
124 |
if ($isJson) {
|
10093 |
stevensc |
125 |
$search = $this->params()->fromQuery('search');
|
16778 |
efrain |
126 |
$search = empty($search['value']) ? '' : Functions::sanitizeFilterString($search['value']);
|
1384 |
efrain |
127 |
|
15371 |
efrain |
128 |
$start = intval($this->params()->fromQuery('start', 0), 10);
|
1384 |
efrain |
129 |
$records_x_page = intval($this->params()->fromQuery('length', 10), 10);
|
15371 |
efrain |
130 |
$page = intval($start / $records_x_page);
|
|
|
131 |
$page++;
|
|
|
132 |
|
1384 |
efrain |
133 |
$order = $this->params()->fromQuery('order', []);
|
|
|
134 |
$order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
|
16766 |
efrain |
135 |
$order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
|
1384 |
efrain |
136 |
|
|
|
137 |
$fields = ['name'];
|
|
|
138 |
$order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
|
|
|
139 |
|
|
|
140 |
if (!in_array($order_direction, ['ASC', 'DESC'])) {
|
|
|
141 |
$order_direction = 'ASC';
|
|
|
142 |
}
|
|
|
143 |
|
1434 |
eleazar |
144 |
$acl = $this->getEvent()->getViewModel()->getVariable('acl');
|
1477 |
efrain |
145 |
$allowDelete = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/vacancies/delete');
|
|
|
146 |
$allowEdit = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/vacancies/edit');
|
1434 |
eleazar |
147 |
|
12314 |
stevensc |
148 |
|
15457 |
efrain |
149 |
$queryMapper = QueryMapper::getInstance($this->adapter);
|
|
|
150 |
$select = $queryMapper->getSql()->select();
|
|
|
151 |
$select->from(['tb1' => RecruitmentSelectionVacancyMapper::_TABLE]);
|
|
|
152 |
$select->columns(['uuid', 'name', 'last_date', 'status']);
|
|
|
153 |
$select->join(['tb2' => JobDescriptionMapper::_TABLE], 'tb1.job_description_id = tb2.id AND tb1.company_id = tb2.company_id', ['job_description' => 'name']);
|
|
|
154 |
|
16822 |
efrain |
155 |
$select->where->equalTo('tb1.company_id', $currentCompany->id);
|
15457 |
efrain |
156 |
|
|
|
157 |
if($search) {
|
|
|
158 |
$select->where->like('tb1.name', '%' . $search . '%');
|
|
|
159 |
}
|
|
|
160 |
$select->order($order_field . ' ' . $order_direction);
|
|
|
161 |
|
|
|
162 |
//echo $select->getSqlString($this->adapter->platform); exit;
|
|
|
163 |
|
|
|
164 |
$hydrator = new ArraySerializableHydrator();
|
|
|
165 |
$resultset = new HydratingResultSet($hydrator);
|
|
|
166 |
|
|
|
167 |
$adapter = new DbSelect($select, $queryMapper->getSql(), $resultset);
|
|
|
168 |
$paginator = new Paginator($adapter);
|
|
|
169 |
$paginator->setItemCountPerPage($records_x_page);
|
|
|
170 |
$paginator->setCurrentPageNumber($page);
|
|
|
171 |
|
|
|
172 |
|
1384 |
efrain |
173 |
|
|
|
174 |
$items = [];
|
|
|
175 |
$records = $paginator->getCurrentItems();
|
12314 |
stevensc |
176 |
|
1384 |
efrain |
177 |
foreach ($records as $record) {
|
15457 |
efrain |
178 |
$dt = \DateTime::createFromFormat('Y-m-d', $record['last_date']);
|
|
|
179 |
|
15461 |
efrain |
180 |
|
|
|
181 |
|
15457 |
efrain |
182 |
switch($record['status'])
|
|
|
183 |
{
|
|
|
184 |
case RecruitmentSelectionVacancy::STATUS_ACTIVE :
|
|
|
185 |
$status = 'LABEL_ACTIVE';
|
|
|
186 |
break;
|
|
|
187 |
|
|
|
188 |
case RecruitmentSelectionVacancy::STATUS_INACTIVE :
|
|
|
189 |
$status = 'LABEL_INACTIVE';
|
|
|
190 |
break;
|
|
|
191 |
|
|
|
192 |
case RecruitmentSelectionVacancy::STATUS_EXPIRED :
|
|
|
193 |
$status = 'LABEL_EXPIRED';
|
|
|
194 |
break;
|
|
|
195 |
|
|
|
196 |
case RecruitmentSelectionVacancy::STATUS_COMPLETED :
|
|
|
197 |
$status = 'LABEL_COMPLETED';
|
|
|
198 |
break;
|
|
|
199 |
|
|
|
200 |
default :
|
|
|
201 |
$status = 'LABEL_UNKNOWN';
|
|
|
202 |
break;
|
|
|
203 |
|
1384 |
efrain |
204 |
}
|
15457 |
efrain |
205 |
|
15461 |
efrain |
206 |
|
|
|
207 |
if($record['status'] == RecruitmentSelectionVacancy::STATUS_ACTIVE || $record['status'] == RecruitmentSelectionVacancy::STATUS_INACTIVE) {
|
|
|
208 |
$actions = [
|
|
|
209 |
'link_edit' => $allowEdit ? $this->url()->fromRoute('recruitment-and-selection/vacancies/edit', ['id' => $record['uuid']]) : '',
|
|
|
210 |
'link_delete' => $allowDelete ? $this->url()->fromRoute('recruitment-and-selection/vacancies/delete', ['id' => $record['uuid']]) : ''
|
|
|
211 |
];
|
|
|
212 |
} else {
|
|
|
213 |
|
|
|
214 |
$actions = [
|
|
|
215 |
'link_edit' => '',
|
|
|
216 |
'link_delete' => '',
|
|
|
217 |
];
|
|
|
218 |
}
|
|
|
219 |
|
15457 |
efrain |
220 |
$item = [
|
|
|
221 |
'name' => $record['name'],
|
|
|
222 |
'job_description' => $record['job_description'],
|
|
|
223 |
'last_date' => $dt->format('d/m/Y'),
|
15461 |
efrain |
224 |
'status' => $status,
|
|
|
225 |
'actions' => $actions,
|
15457 |
efrain |
226 |
];
|
|
|
227 |
|
1384 |
efrain |
228 |
|
|
|
229 |
array_push($items, $item);
|
|
|
230 |
}
|
|
|
231 |
|
|
|
232 |
return new JsonModel([
|
|
|
233 |
'success' => true,
|
|
|
234 |
'data' => [
|
|
|
235 |
'items' => $items,
|
|
|
236 |
'total' => $paginator->getTotalItemCount(),
|
|
|
237 |
]
|
|
|
238 |
]);
|
|
|
239 |
} else {
|
|
|
240 |
|
1544 |
eleazar |
241 |
$form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
|
1384 |
efrain |
242 |
|
1549 |
eleazar |
243 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
|
|
244 |
$industryMapper = industryMapper::getInstance($this->adapter);
|
12314 |
stevensc |
245 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
|
|
246 |
|
|
|
247 |
$jobDescritions = [];
|
|
|
248 |
$industries = [];
|
|
|
249 |
$jobCategories = [];
|
|
|
250 |
|
15087 |
efrain |
251 |
$records = $jobCategoryMapper->fetchAllActive();
|
12314 |
stevensc |
252 |
|
|
|
253 |
foreach ($records as $record) {
|
|
|
254 |
$jobCategories[$record->uuid] = $record->name;
|
|
|
255 |
}
|
|
|
256 |
|
15087 |
efrain |
257 |
$records = $industryMapper->fetchAllActive();
|
12314 |
stevensc |
258 |
|
|
|
259 |
foreach ($records as $record) {
|
|
|
260 |
$industries[$record->uuid] = $record->name;
|
|
|
261 |
}
|
|
|
262 |
|
|
|
263 |
$records = $currentCompany ?
|
|
|
264 |
$jobDescriptionMapper->fetchAllActiveByCompanyId($currentCompany->id) :
|
15087 |
efrain |
265 |
$jobDescriptionMapper->fetchAllActiveByDefault();
|
|
|
266 |
|
12314 |
stevensc |
267 |
foreach ($records as $record) {
|
|
|
268 |
$jobDescritions[$record->uuid] = $record->name;
|
|
|
269 |
}
|
|
|
270 |
|
17002 |
efrain |
271 |
|
1384 |
efrain |
272 |
$this->layout()->setTemplate('layout/layout-backend');
|
|
|
273 |
$viewModel = new ViewModel();
|
1396 |
eleazar |
274 |
$viewModel->setTemplate('leaders-linked/recruitment-and-selection-vacancies/index.phtml');
|
1384 |
efrain |
275 |
$viewModel->setVariable('form', $form);
|
10112 |
stevensc |
276 |
$viewModel->setVariable('google_map_key', $google_map_key);
|
12314 |
stevensc |
277 |
$viewModel->setVariable('jobDescritions', $jobDescritions);
|
|
|
278 |
$viewModel->setVariable('industries', $industries);
|
|
|
279 |
$viewModel->setVariable('jobCategories', $jobCategories);
|
1561 |
efrain |
280 |
|
1384 |
efrain |
281 |
return $viewModel;
|
|
|
282 |
}
|
|
|
283 |
} else {
|
|
|
284 |
return new JsonModel([
|
|
|
285 |
'success' => false,
|
|
|
286 |
'data' => 'ERROR_METHOD_NOT_ALLOWED'
|
12314 |
stevensc |
287 |
]);;
|
1384 |
efrain |
288 |
}
|
|
|
289 |
}
|
|
|
290 |
|
12314 |
stevensc |
291 |
public function addAction()
|
|
|
292 |
{
|
1384 |
efrain |
293 |
$request = $this->getRequest();
|
|
|
294 |
$currentUserPlugin = $this->plugin('currentUserPlugin');
|
|
|
295 |
$currentCompany = $currentUserPlugin->getCompany();
|
|
|
296 |
$currentUser = $currentUserPlugin->getUser();
|
|
|
297 |
|
|
|
298 |
$request = $this->getRequest();
|
|
|
299 |
|
|
|
300 |
|
|
|
301 |
if ($request->isPost()) {
|
1544 |
eleazar |
302 |
$form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
|
1384 |
efrain |
303 |
$dataPost = $request->getPost()->toArray();
|
15087 |
efrain |
304 |
|
|
|
305 |
|
15461 |
efrain |
306 |
if(!empty($dataPost['last_date'])) {
|
|
|
307 |
$dt = \DateTime::createFromFormat('d/m/Y', $dataPost['last_date']);
|
|
|
308 |
if($dt) {
|
|
|
309 |
$dataPost['last_date'] = $dt->format('Y-m-d');
|
|
|
310 |
} else {
|
|
|
311 |
$dataPost['last_date'] = date('Y-m-d');
|
|
|
312 |
}
|
|
|
313 |
}
|
|
|
314 |
|
15087 |
efrain |
315 |
|
|
|
316 |
|
1387 |
eleazar |
317 |
$dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : RecruitmentSelectionVacancy::STATUS_INACTIVE;
|
1384 |
efrain |
318 |
|
|
|
319 |
$form->setData($dataPost);
|
|
|
320 |
|
|
|
321 |
if ($form->isValid()) {
|
|
|
322 |
$dataPost = (array) $form->getData();
|
|
|
323 |
|
15087 |
efrain |
324 |
|
1384 |
efrain |
325 |
$hydrator = new ObjectPropertyHydrator();
|
|
|
326 |
|
1417 |
eleazar |
327 |
$location = new Location();
|
|
|
328 |
$hydrator->hydrate($dataPost, $location);
|
12314 |
stevensc |
329 |
|
|
|
330 |
$locationMapper = LocationMapper::getInstance($this->adapter);
|
1452 |
eleazar |
331 |
$result = $locationMapper->insert($location);
|
1451 |
eleazar |
332 |
|
1417 |
eleazar |
333 |
|
1418 |
eleazar |
334 |
if (!$result) {
|
|
|
335 |
return new JsonModel([
|
|
|
336 |
'success' => false,
|
15461 |
efrain |
337 |
'data' => $locationMapper->getError()
|
1418 |
eleazar |
338 |
]);
|
|
|
339 |
}
|
1417 |
eleazar |
340 |
|
1539 |
eleazar |
341 |
$vacancy = new RecruitmentSelectionVacancy();
|
|
|
342 |
$hydrator->hydrate($dataPost, $vacancy);
|
1427 |
eleazar |
343 |
|
1539 |
eleazar |
344 |
$vacancy->location_id = $location->id;
|
1544 |
eleazar |
345 |
$vacancy->company_id = $currentCompany->id;
|
1384 |
efrain |
346 |
|
1427 |
eleazar |
347 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
|
|
348 |
$jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
|
1539 |
eleazar |
349 |
$vacancy->job_description_id = $jobDescription->id;
|
15461 |
efrain |
350 |
$vacancy->content = $this->serialize($jobDescription);
|
1427 |
eleazar |
351 |
|
|
|
352 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
12314 |
stevensc |
353 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid($dataPost['job_category_id']);
|
1539 |
eleazar |
354 |
$vacancy->job_category_id = $jobCategory->id;
|
1427 |
eleazar |
355 |
|
1428 |
eleazar |
356 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
|
|
357 |
$industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
|
1539 |
eleazar |
358 |
$vacancy->industry_id = $industry->id;
|
1425 |
eleazar |
359 |
|
1539 |
eleazar |
360 |
$vacancy->description = $dataPost['description'];
|
12314 |
stevensc |
361 |
|
1428 |
eleazar |
362 |
|
15087 |
efrain |
363 |
|
1427 |
eleazar |
364 |
$recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
|
1539 |
eleazar |
365 |
$result = $recruitmentSelectionVacancyMapper->insert($vacancy);
|
1384 |
efrain |
366 |
|
|
|
367 |
if ($result) {
|
15461 |
efrain |
368 |
$this->logger->info('Se agrego la vacante : ' . $vacancy->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
|
1384 |
efrain |
369 |
|
|
|
370 |
$data = [
|
|
|
371 |
'success' => true,
|
|
|
372 |
'data' => 'LABEL_RECORD_ADDED'
|
|
|
373 |
];
|
|
|
374 |
} else {
|
|
|
375 |
$data = [
|
|
|
376 |
'success' => false,
|
1412 |
eleazar |
377 |
'data' => $recruitmentSelectionVacancyMapper->getError()
|
1384 |
efrain |
378 |
];
|
|
|
379 |
}
|
|
|
380 |
|
|
|
381 |
return new JsonModel($data);
|
|
|
382 |
} else {
|
|
|
383 |
$messages = [];
|
|
|
384 |
$form_messages = (array) $form->getMessages();
|
|
|
385 |
foreach ($form_messages as $fieldname => $field_messages) {
|
|
|
386 |
|
|
|
387 |
$messages[$fieldname] = array_values($field_messages);
|
|
|
388 |
}
|
|
|
389 |
|
|
|
390 |
return new JsonModel([
|
|
|
391 |
'success' => false,
|
|
|
392 |
'data' => $messages
|
|
|
393 |
]);
|
|
|
394 |
}
|
|
|
395 |
} else {
|
|
|
396 |
$data = [
|
|
|
397 |
'success' => false,
|
1575 |
eleazar |
398 |
'data' => 'ERROR_METHOD_NOT_ALLOWED'
|
1384 |
efrain |
399 |
];
|
|
|
400 |
|
|
|
401 |
return new JsonModel($data);
|
|
|
402 |
}
|
|
|
403 |
|
|
|
404 |
return new JsonModel($data);
|
|
|
405 |
}
|
|
|
406 |
|
12314 |
stevensc |
407 |
public function editAction()
|
|
|
408 |
{
|
1384 |
efrain |
409 |
$request = $this->getRequest();
|
|
|
410 |
$currentUserPlugin = $this->plugin('currentUserPlugin');
|
|
|
411 |
$currentCompany = $currentUserPlugin->getCompany();
|
|
|
412 |
$currentUser = $currentUserPlugin->getUser();
|
|
|
413 |
|
|
|
414 |
$request = $this->getRequest();
|
|
|
415 |
$uuid = $this->params()->fromRoute('id');
|
|
|
416 |
|
|
|
417 |
|
|
|
418 |
if (!$uuid) {
|
|
|
419 |
$data = [
|
|
|
420 |
'success' => false,
|
|
|
421 |
'data' => 'ERROR_INVALID_PARAMETER'
|
|
|
422 |
];
|
|
|
423 |
|
|
|
424 |
return new JsonModel($data);
|
|
|
425 |
}
|
|
|
426 |
|
1386 |
eleazar |
427 |
$recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
|
1575 |
eleazar |
428 |
$vacancy = $recruitmentSelectionVacancyMapper->fetchOneByUuid($uuid);
|
|
|
429 |
if (!$vacancy) {
|
1384 |
efrain |
430 |
$data = [
|
|
|
431 |
'success' => false,
|
|
|
432 |
'data' => 'ERROR_RECORD_NOT_FOUND'
|
|
|
433 |
];
|
|
|
434 |
|
|
|
435 |
return new JsonModel($data);
|
|
|
436 |
}
|
|
|
437 |
|
1575 |
eleazar |
438 |
if ($vacancy->company_id != $currentCompany->id) {
|
1384 |
efrain |
439 |
return new JsonModel([
|
|
|
440 |
'success' => false,
|
|
|
441 |
'data' => 'ERROR_UNAUTHORIZED'
|
|
|
442 |
]);
|
|
|
443 |
}
|
|
|
444 |
|
|
|
445 |
|
|
|
446 |
if ($request->isPost()) {
|
1544 |
eleazar |
447 |
$form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
|
1384 |
efrain |
448 |
$dataPost = $request->getPost()->toArray();
|
15461 |
efrain |
449 |
|
|
|
450 |
if(!empty($dataPost['last_date'])) {
|
|
|
451 |
$dt = \DateTime::createFromFormat('d/m/Y', $dataPost['last_date']);
|
|
|
452 |
if($dt) {
|
|
|
453 |
$dataPost['last_date'] = $dt->format('Y-m-d');
|
|
|
454 |
} else {
|
|
|
455 |
$dataPost['last_date'] = date('Y-m-d');
|
|
|
456 |
}
|
|
|
457 |
}
|
|
|
458 |
|
1387 |
eleazar |
459 |
$dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : RecruitmentSelectionVacancy::STATUS_INACTIVE;
|
1384 |
efrain |
460 |
|
|
|
461 |
$form->setData($dataPost);
|
|
|
462 |
|
|
|
463 |
if ($form->isValid()) {
|
|
|
464 |
$dataPost = (array) $form->getData();
|
|
|
465 |
|
|
|
466 |
$hydrator = new ObjectPropertyHydrator();
|
1575 |
eleazar |
467 |
$hydrator->hydrate($dataPost, $vacancy);
|
1384 |
efrain |
468 |
|
1575 |
eleazar |
469 |
if (!$vacancy->status) {
|
|
|
470 |
$vacancy->status = RecruitmentSelectionVacancy::STATUS_INACTIVE;
|
1384 |
efrain |
471 |
}
|
15118 |
efrain |
472 |
|
1578 |
eleazar |
473 |
$locationMapper = LocationMapper::getInstance($this->adapter);
|
|
|
474 |
$location = $locationMapper->fetchOne($vacancy->location_id);
|
|
|
475 |
$hydrator->hydrate($dataPost, $location);
|
|
|
476 |
$locationMapper->update($location);
|
|
|
477 |
|
1384 |
efrain |
478 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
|
|
479 |
$jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
|
1575 |
eleazar |
480 |
$vacancy->job_description_id = $jobDescription->id;
|
1384 |
efrain |
481 |
|
1439 |
eleazar |
482 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
12314 |
stevensc |
483 |
$jobCategory = $jobCategoryMapper->fetchOneByUuid($dataPost['job_category_id']);
|
1575 |
eleazar |
484 |
$vacancy->job_category_id = $jobCategory->id;
|
1384 |
efrain |
485 |
|
1439 |
eleazar |
486 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
|
|
487 |
$industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
|
1575 |
eleazar |
488 |
$vacancy->industry_id = $industry->id;
|
15461 |
efrain |
489 |
|
1439 |
eleazar |
490 |
|
1577 |
eleazar |
491 |
$result = $recruitmentSelectionVacancyMapper->update($vacancy);
|
1439 |
eleazar |
492 |
|
12314 |
stevensc |
493 |
|
1384 |
efrain |
494 |
if ($result) {
|
15461 |
efrain |
495 |
$this->logger->info('Se actualizo la vancante : ' . $vacancy->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
|
1384 |
efrain |
496 |
$data = [
|
|
|
497 |
'success' => true,
|
|
|
498 |
'data' => 'LABEL_RECORD_UPDATED'
|
|
|
499 |
];
|
|
|
500 |
} else {
|
|
|
501 |
$data = [
|
|
|
502 |
'success' => false,
|
1386 |
eleazar |
503 |
'data' => $recruitmentSelectionVacancyMapper->getError()
|
1384 |
efrain |
504 |
];
|
|
|
505 |
}
|
|
|
506 |
|
|
|
507 |
return new JsonModel($data);
|
|
|
508 |
} else {
|
|
|
509 |
$messages = [];
|
|
|
510 |
$form_messages = (array) $form->getMessages();
|
|
|
511 |
foreach ($form_messages as $fieldname => $field_messages) {
|
|
|
512 |
$messages[$fieldname] = array_values($field_messages);
|
|
|
513 |
}
|
|
|
514 |
|
|
|
515 |
return new JsonModel([
|
|
|
516 |
'success' => false,
|
|
|
517 |
'data' => $messages
|
|
|
518 |
]);
|
|
|
519 |
}
|
|
|
520 |
} else if ($request->isGet()) {
|
|
|
521 |
$hydrator = new ObjectPropertyHydrator();
|
|
|
522 |
|
1441 |
eleazar |
523 |
$locationMapper = LocationMapper::getInstance($this->adapter);
|
1575 |
eleazar |
524 |
$location = $locationMapper->fetchOne($vacancy->location_id);
|
1441 |
eleazar |
525 |
|
1384 |
efrain |
526 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
1575 |
eleazar |
527 |
$jobDescription = $jobDescriptionMapper->fetchOne($vacancy->job_description_id);
|
15461 |
efrain |
528 |
|
|
|
529 |
$jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
|
1575 |
eleazar |
530 |
$jobCategory = $jobCategoryMapper->fetchOne($vacancy->job_category_id);
|
15461 |
efrain |
531 |
|
1445 |
eleazar |
532 |
$industryMapper = IndustryMapper::getInstance($this->adapter);
|
1575 |
eleazar |
533 |
$industry = $industryMapper->fetchOne($vacancy->industry_id);
|
15087 |
efrain |
534 |
|
15461 |
efrain |
535 |
|
15087 |
efrain |
536 |
$dt = \DateTime::createFromFormat('Y-m-d', $vacancy->last_date);
|
15461 |
efrain |
537 |
$last_date = $dt->format('d/m/Y');
|
15087 |
efrain |
538 |
|
1384 |
efrain |
539 |
$data = [
|
|
|
540 |
'success' => true,
|
|
|
541 |
'data' => [
|
1575 |
eleazar |
542 |
'name' => $vacancy->name,
|
15461 |
efrain |
543 |
'job_description_id' => $jobDescription->uuid,
|
|
|
544 |
'job_category_id' => $jobCategory->uuid,
|
|
|
545 |
'industry_id' => $industry->uuid,
|
1572 |
eleazar |
546 |
'location_search' => $location->formatted_address,
|
1570 |
eleazar |
547 |
'formatted_address' => $location->formatted_address,
|
1572 |
eleazar |
548 |
'address1' => $location->address1,
|
|
|
549 |
'address2' => $location->address2,
|
1568 |
eleazar |
550 |
'country' => $location->country,
|
|
|
551 |
'state' => $location->state,
|
12314 |
stevensc |
552 |
'city1' => $location->city1,
|
1568 |
eleazar |
553 |
'city2' => $location->city2,
|
|
|
554 |
'postal_code' => $location->postal_code,
|
|
|
555 |
'latitude' => $location->latitude,
|
|
|
556 |
'longitude' => $location->longitude,
|
1575 |
eleazar |
557 |
'description' => $vacancy->description,
|
15087 |
efrain |
558 |
'last_date' => $last_date,
|
1575 |
eleazar |
559 |
'status' => $vacancy->status,
|
15461 |
efrain |
560 |
|
1384 |
efrain |
561 |
]
|
|
|
562 |
];
|
|
|
563 |
|
15461 |
efrain |
564 |
|
1384 |
efrain |
565 |
} else {
|
|
|
566 |
$data = [
|
|
|
567 |
'success' => false,
|
1574 |
eleazar |
568 |
'data' => 'ERROR_METHOD_NOT_ALLOWED'
|
1384 |
efrain |
569 |
];
|
|
|
570 |
|
15461 |
efrain |
571 |
|
1384 |
efrain |
572 |
}
|
|
|
573 |
|
|
|
574 |
return new JsonModel($data);
|
|
|
575 |
}
|
|
|
576 |
|
12314 |
stevensc |
577 |
public function deleteAction()
|
|
|
578 |
{
|
1384 |
efrain |
579 |
$request = $this->getRequest();
|
|
|
580 |
$currentUserPlugin = $this->plugin('currentUserPlugin');
|
|
|
581 |
$currentCompany = $currentUserPlugin->getCompany();
|
|
|
582 |
$currentUser = $currentUserPlugin->getUser();
|
|
|
583 |
|
|
|
584 |
$request = $this->getRequest();
|
|
|
585 |
$uuid = $this->params()->fromRoute('id');
|
|
|
586 |
|
|
|
587 |
if (!$uuid) {
|
|
|
588 |
$data = [
|
|
|
589 |
'success' => false,
|
|
|
590 |
'data' => 'ERROR_INVALID_PARAMETER'
|
|
|
591 |
];
|
|
|
592 |
|
|
|
593 |
return new JsonModel($data);
|
|
|
594 |
}
|
|
|
595 |
|
1386 |
eleazar |
596 |
$recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
|
1539 |
eleazar |
597 |
$vacancyMapper = $recruitmentSelectionVacancyMapper->fetchOneByUuid($uuid);
|
|
|
598 |
if (!$vacancyMapper) {
|
1384 |
efrain |
599 |
$data = [
|
|
|
600 |
'success' => false,
|
|
|
601 |
'data' => 'ERROR_RECORD_NOT_FOUND'
|
|
|
602 |
];
|
|
|
603 |
|
|
|
604 |
return new JsonModel($data);
|
|
|
605 |
}
|
|
|
606 |
|
1544 |
eleazar |
607 |
if ($vacancyMapper->company_id != $currentCompany->id) {
|
1384 |
efrain |
608 |
return new JsonModel([
|
|
|
609 |
'success' => false,
|
|
|
610 |
'data' => 'ERROR_UNAUTHORIZED'
|
|
|
611 |
]);
|
|
|
612 |
}
|
|
|
613 |
|
|
|
614 |
if ($request->isPost()) {
|
|
|
615 |
|
|
|
616 |
|
1539 |
eleazar |
617 |
$result = $recruitmentSelectionVacancyMapper->delete($vacancyMapper->id);
|
1384 |
efrain |
618 |
if ($result) {
|
1539 |
eleazar |
619 |
$this->logger->info('Se borro el formulario de reclutamiento ' . $vacancyMapper->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
|
1384 |
efrain |
620 |
|
|
|
621 |
$data = [
|
|
|
622 |
'success' => true,
|
|
|
623 |
'data' => 'LABEL_RECORD_DELETED'
|
|
|
624 |
];
|
|
|
625 |
} else {
|
|
|
626 |
|
|
|
627 |
$data = [
|
|
|
628 |
'success' => false,
|
1386 |
eleazar |
629 |
'data' => $recruitmentSelectionVacancyMapper->getError()
|
1384 |
efrain |
630 |
];
|
|
|
631 |
|
|
|
632 |
return new JsonModel($data);
|
|
|
633 |
}
|
|
|
634 |
} else {
|
|
|
635 |
$data = [
|
|
|
636 |
'success' => false,
|
|
|
637 |
'data' => 'ERROR_METHOD_NOT_ALLOWED'
|
|
|
638 |
];
|
|
|
639 |
|
|
|
640 |
return new JsonModel($data);
|
|
|
641 |
}
|
|
|
642 |
|
|
|
643 |
return new JsonModel($data);
|
|
|
644 |
}
|
15461 |
efrain |
645 |
|
|
|
646 |
|
|
|
647 |
|
|
|
648 |
public function serialize($jobDescription)
|
|
|
649 |
{
|
|
|
650 |
|
|
|
651 |
|
|
|
652 |
|
|
|
653 |
|
|
|
654 |
$behaviorMapper = BehaviorMapper::getInstance($this->adapter);
|
|
|
655 |
$competencyMapper = CompetencyMapper::getInstance($this->adapter);
|
|
|
656 |
$competencyTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
|
|
|
657 |
|
|
|
658 |
$competencyTypes = [];
|
|
|
659 |
$competencies = [];
|
|
|
660 |
$behaviors = [];
|
|
|
661 |
$competencies_selected = [];
|
|
|
662 |
$subordinates_selected = [];
|
|
|
663 |
|
|
|
664 |
$jobDescriptionCompetencyMapper = JobDescriptionCompetencyMapper::getInstance($this->adapter);
|
|
|
665 |
$jobDescriptionCompetencyBehaviorMapper = JobDescriptionCompetencyBehaviorMapper::getInstance($this->adapter);
|
|
|
666 |
|
|
|
667 |
$jobDescriptionCompetencies = $jobDescriptionCompetencyMapper->fetchAllByJobDescriptionId($jobDescription->id);
|
|
|
668 |
foreach($jobDescriptionCompetencies as $jobDescriptionCompetency)
|
|
|
669 |
{
|
|
|
670 |
|
|
|
671 |
if(isset($competencies[$jobDescriptionCompetency->competency_id])) {
|
|
|
672 |
$competency = $competencies[$jobDescriptionCompetency->competency_id];
|
|
|
673 |
} else {
|
|
|
674 |
|
|
|
675 |
$competency = $competencyMapper->fetchOne($jobDescriptionCompetency->competency_id);
|
|
|
676 |
if(!$competency) {
|
|
|
677 |
continue;
|
|
|
678 |
}
|
|
|
679 |
|
|
|
680 |
|
|
|
681 |
|
|
|
682 |
$competencies[$jobDescriptionCompetency->competency_id] = new \stdClass();
|
|
|
683 |
$competencies[$jobDescriptionCompetency->competency_id]->uuid = $competency->uuid;
|
|
|
684 |
$competencies[$jobDescriptionCompetency->competency_id]->name = $competency->name;
|
|
|
685 |
$competencies[$jobDescriptionCompetency->competency_id]->description = $competency->description;
|
|
|
686 |
|
|
|
687 |
}
|
|
|
688 |
|
|
|
689 |
|
|
|
690 |
if(isset($competencyTypes[$competency->competency_type_id])) {
|
|
|
691 |
$competencyType = $competencyTypes[$competency->competency_type_id];
|
|
|
692 |
} else {
|
|
|
693 |
|
|
|
694 |
$competencyType = $competencyTypeMapper->fetchOne($competency->competency_type_id);
|
|
|
695 |
if(!$competencyType) {
|
|
|
696 |
continue;
|
|
|
697 |
}
|
|
|
698 |
|
|
|
699 |
$competencyTypes[$competency->competency_type_id] = new \stdClass();
|
|
|
700 |
$competencyTypes[$competency->competency_type_id]->uuid = $competencyType->uuid;
|
|
|
701 |
$competencyTypes[$competency->competency_type_id]->name = $competencyType->name;
|
|
|
702 |
$competencyTypes[$competency->competency_type_id]->description = $competencyType->description;
|
|
|
703 |
|
|
|
704 |
}
|
|
|
705 |
|
|
|
706 |
$competency_selected = [
|
|
|
707 |
'uuid' => $competency->uuid,
|
|
|
708 |
'competency_type_uuid' => $competencyType->uuid,
|
|
|
709 |
'behaviors' => []
|
|
|
710 |
];
|
|
|
711 |
|
|
|
712 |
|
|
|
713 |
$jobDescriptionCompetencyBehaviors = $jobDescriptionCompetencyBehaviorMapper->fetchAllByJobDescriptionIdAndCompetencyId($jobDescriptionCompetency->job_description_id, $jobDescriptionCompetency->competency_id);
|
|
|
714 |
foreach($jobDescriptionCompetencyBehaviors as $jobDescriptionCompetencyBehavior)
|
|
|
715 |
{
|
|
|
716 |
|
|
|
717 |
|
|
|
718 |
if(isset($behaviors[$jobDescriptionCompetencyBehavior->behavior_id])) {
|
|
|
719 |
$behavior = $behaviors[$jobDescriptionCompetencyBehavior->behavior_id];
|
|
|
720 |
} else {
|
|
|
721 |
|
|
|
722 |
$behavior = $behaviorMapper->fetchOne($jobDescriptionCompetencyBehavior->behavior_id);
|
|
|
723 |
if(!$behavior) {
|
|
|
724 |
|
|
|
725 |
continue;
|
|
|
726 |
}
|
|
|
727 |
|
|
|
728 |
$behaviors[$jobDescriptionCompetencyBehavior->behavior_id] = new \stdClass();
|
|
|
729 |
$behaviors[$jobDescriptionCompetencyBehavior->behavior_id]->uuid = $behavior->uuid;
|
|
|
730 |
$behaviors[$jobDescriptionCompetencyBehavior->behavior_id]->description = $behavior->description;
|
|
|
731 |
|
|
|
732 |
}
|
|
|
733 |
|
|
|
734 |
|
|
|
735 |
|
|
|
736 |
|
|
|
737 |
array_push($competency_selected['behaviors'], ['uuid' => $behavior->uuid, 'level' => $jobDescriptionCompetencyBehavior->level]);
|
|
|
738 |
|
|
|
739 |
|
|
|
740 |
}
|
|
|
741 |
|
|
|
742 |
array_push($competencies_selected, $competency_selected);
|
|
|
743 |
|
|
|
744 |
|
|
|
745 |
|
|
|
746 |
}
|
|
|
747 |
|
|
|
748 |
|
|
|
749 |
$jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
|
|
|
750 |
|
|
|
751 |
$jobDescriptionSubordinateMapper = JobDescriptionSubordinateMapper::getInstance($this->adapter);
|
|
|
752 |
$jobDescriptionSubordinates = $jobDescriptionSubordinateMapper->fetchAllByJobDescriptionIdTopLevel($jobDescription->id);
|
|
|
753 |
|
|
|
754 |
foreach($jobDescriptionSubordinates as $jobDescriptionSubordinate)
|
|
|
755 |
{
|
|
|
756 |
$jobDescriptionForSubordinate = $jobDescriptionMapper->fetchOne($jobDescriptionSubordinate->job_description_id_low_level);
|
|
|
757 |
if($jobDescriptionForSubordinate) {
|
|
|
758 |
array_push($subordinates_selected, ['uuid' => $jobDescriptionForSubordinate->uuid ]);
|
|
|
759 |
}
|
|
|
760 |
|
|
|
761 |
|
|
|
762 |
|
|
|
763 |
}
|
|
|
764 |
|
|
|
765 |
if($jobDescription->job_description_id_boss) {
|
|
|
766 |
|
|
|
767 |
$jobDescriptionBoss = $jobDescriptionMapper->fetchOne($jobDescription->job_description_id_boss);
|
|
|
768 |
if($jobDescriptionBoss) {
|
|
|
769 |
$job_description_id_boss = $jobDescriptionBoss->uuid;
|
|
|
770 |
}
|
|
|
771 |
} else {
|
|
|
772 |
$job_description_id_boss = '';
|
|
|
773 |
}
|
|
|
774 |
|
|
|
775 |
$content = [
|
|
|
776 |
'uuid' => $jobDescription->uuid,
|
|
|
777 |
'name' => $jobDescription->name,
|
|
|
778 |
'functions' => $jobDescription->functions,
|
|
|
779 |
'objectives' => $jobDescription->objectives,
|
|
|
780 |
'job_description_id_boss' => $job_description_id_boss,
|
|
|
781 |
'competency_types' => $competencyTypes,
|
|
|
782 |
'competencies' => $competencies,
|
|
|
783 |
'behaviors' => $behaviors,
|
|
|
784 |
'competencies_selected' => $competencies_selected,
|
|
|
785 |
'subordinates_selected' => $subordinates_selected,
|
|
|
786 |
|
|
|
787 |
];
|
|
|
788 |
|
|
|
789 |
return json_encode($content);
|
|
|
790 |
}
|
1384 |
efrain |
791 |
}
|