Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16768 | Rev 16817 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15444 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 7
 
15444 efrain 8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\JsonModel;
11
use Laminas\View\Model\ViewModel;
12
use LeadersLinked\Library\Functions;
13
use LeadersLinked\Mapper\PerformanceEvaluationTestMapper;
14
use LeadersLinked\Mapper\PerformanceEvaluationFormMapper;
15
use LeadersLinked\Mapper\QueryMapper;
16
use LeadersLinked\Mapper\UserMapper;
17
use LeadersLinked\Model\PerformanceEvaluationTest;
18
use Laminas\Hydrator\ArraySerializableHydrator;
19
use Laminas\Db\ResultSet\HydratingResultSet;
20
use Laminas\Paginator\Adapter\DbSelect;
21
use Laminas\Paginator\Paginator;
22
use LeadersLinked\Form\PerformanceEvaluation\PerformanceEvaluationTakeAnTestForm;
23
use Laminas\Mvc\I18n\Translator;
24
use LeadersLinked\Library\PerformanceEvaluationInterviewPDF;
16768 efrain 25
use LeadersLinked\Cache\CacheInterface;
26
use LeadersLinked\Cache\CacheImpl;
15444 efrain 27
 
28
class ActivityCenterPerformanceEvaluationController extends AbstractActionController
29
{
30
    /**
31
     *
16769 efrain 32
     * @var \Laminas\Db\Adapter\AdapterInterface
15444 efrain 33
     */
34
    private $adapter;
35
 
36
    /**
37
     *
16769 efrain 38
     * @var \LeadersLinked\Cache\CacheInterface
15444 efrain 39
     */
16769 efrain 40
    private $cache;
41
 
42
 
43
    /**
44
     *
45
     * @var \Laminas\Log\LoggerInterface
46
     */
15444 efrain 47
    private $logger;
48
 
49
    /**
50
     *
51
     * @var array
52
     */
53
    private $config;
54
 
55
 
56
    /**
16769 efrain 57
     *
58
     * @var \Laminas\Mvc\I18n\Translator
15444 efrain 59
     */
60
    private $translator;
61
 
62
 
16768 efrain 63
    /**
15444 efrain 64
     *
16769 efrain 65
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
66
     * @param \LeadersLinked\Cache\CacheInterface $cache
67
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
15444 efrain 68
     * @param array $config
16769 efrain 69
     * @param \Laminas\Mvc\I18n\Translator $translator
15444 efrain 70
     */
16769 efrain 71
    public function __construct($adapter, $cache, $logger, $config, $translator)
15444 efrain 72
    {
73
        $this->adapter      = $adapter;
16769 efrain 74
        $this->cache        = $cache;
15444 efrain 75
        $this->logger       = $logger;
76
        $this->config       = $config;
77
        $this->translator   = $translator;
78
    }
79
 
80
    public function indexAction()
81
    {
82
        $currentUserPlugin = $this->plugin('currentUserPlugin');
83
        $currentUser = $currentUserPlugin->getUser();
84
        $currentCompany = $currentUserPlugin->getCompany();
85
 
86
 
87
 
88
 
89
 
90
        $request = $this->getRequest();
91
 
92
        if ($request->isGet()) {
93
 
94
            $headers = $request->getHeaders();
95
 
96
            $isJson = false;
97
            if ($headers->has('Accept')) {
98
                $accept = $headers->get('Accept');
99
 
100
                $prioritized = $accept->getPrioritized();
101
 
102
                foreach ($prioritized as $key => $value) {
103
                    $raw = trim($value->getRaw());
104
 
105
                    if (!$isJson) {
106
                        $isJson = strpos($raw, 'json');
107
                    }
108
                }
109
            }
110
 
111
 
112
            if ($isJson) {
113
 
114
 
115
                $data = [
116
                    'items' => [],
117
                    'total' => 0,
118
                ];
119
 
120
 
121
                $search = $this->params()->fromQuery('search');
16766 efrain 122
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
15444 efrain 123
 
124
                $start = intval($this->params()->fromQuery('start', 0), 10);
125
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
126
                $page =  intval($start / $records_x_page);
127
                $page++;
128
 
129
                $order = $this->params()->fromQuery('order', []);
130
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
16766 efrain 131
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
15444 efrain 132
 
133
                $fields = ['max_date'];
134
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'first_name';
135
 
136
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
137
                    $order_direction = 'ASC';
138
                }
139
 
140
 
141
 
142
 
143
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
144
                //$allowDelete = $acl->isAllowed($currentUser->usertype_id, 'performance-evaluation/evaluations/delete');
145
 
146
 
147
 
148
                $queryMapper = QueryMapper::getInstance($this->adapter);
149
                $sql = $queryMapper->getSql();
150
                $select = $sql->select();
151
                $select->columns([
152
                    'id',
153
                    'uuid',
154
                    'last_date',
155
                    'status',
156
                    'type',
157
                    'added_on',
158
                    'updated_on'
159
 
160
                ]);
161
 
162
 
163
 
164
                $select->from(['tb1' => PerformanceEvaluationTestMapper::_TABLE]);
165
                $select->join(['tb2' => PerformanceEvaluationFormMapper::_TABLE], 'tb1.form_id = tb2.id ', ['form' => 'name']);
166
                $select->join(['tb3' => UserMapper::_TABLE], 'tb1.supervisor_id = tb3.id ', ['supervisor_first_name' => 'first_name', 'supervisor_last_name' => 'last_name', 'supervisor_email' => 'email']);
167
                $select->join(['tb4' => UserMapper::_TABLE], 'tb1.employee_id = tb4.id ', ['employee_first_name' => 'first_name', 'employee_last_name' => 'last_name', 'employee_email' => 'email']);
168
                $select->where->equalTo('tb1.company_id', $currentCompany->id);
169
                $select->where->nest()
170
                    ->nest()
171
                        ->equalTo('tb1.supervisor_id', $currentUser->id)
172
                        ->and->equalTo('tb1.type', PerformanceEvaluationTest::TYPE_SUPERVISOR)
173
                    ->unnest()
174
                    ->or->nest()
175
                        ->equalTo('tb1.supervisor_id', $currentUser->id)
176
                        ->and->equalTo('tb1.type', PerformanceEvaluationTest::TYPE_BOTH)
177
                    ->unnest()
178
                    ->or->nest()
179
                    ->equalTo('tb1.employee_id', $currentUser->id)
180
                    ->and->equalTo('tb1.type', PerformanceEvaluationTest::TYPE_EMPLOYEE)
181
                    ->unnest()
182
                ->unnest();
183
 
184
                if ($search) {
185
                    $select->where->nest()
186
                        ->like('tb2.name', '%' . $search . '%')
187
                        ->or->like('tb1.uuid', '%' . $search . '%')
188
                        ->unnest();
189
                }
190
 
191
 
192
                $select->order('tb1.last_date DESC, tb2.name ASC');
193
 
194
 
195
 
196
                $hydrator = new ArraySerializableHydrator();
197
                $resultset = new HydratingResultSet($hydrator);
198
 
199
                $adapter = new DbSelect($select, $sql, $resultset);
200
                $paginator = new Paginator($adapter);
201
                $paginator->setItemCountPerPage($records_x_page);
202
                $paginator->setCurrentPageNumber($page);
203
 
204
 
205
 
206
                $items = [];
207
                $records = $paginator->getCurrentItems();
208
                foreach ($records as $record)
209
                {
210
 
211
                    $dt = \DateTime::createFromFormat('Y-m-d', $record['last_date']);
212
                    $last_date = $dt->format('d/m/Y');
213
 
214
                    switch($record['status'])
215
                    {
216
                        case PerformanceEvaluationTest::STATUS_PENDING :
217
                            $status = 'LABEL_PENDING';
218
                            break;
219
 
220
                        case PerformanceEvaluationTest::STATUS_COMPLETED :
221
                            $status = 'LABEL_COMPLETED';
222
                            break;
223
 
224
                        default :
225
                            $status = 'LABEL_UNKNOW';
226
                            break;
227
                    }
228
 
229
                    switch($record['type'])
230
                    {
231
                        case PerformanceEvaluationTest::TYPE_BOTH :
232
                            $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH';
233
                            break;
234
 
235
                        case PerformanceEvaluationTest::TYPE_SUPERVISOR :
236
                            $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR';
237
                            break;
238
 
239
                        case PerformanceEvaluationTest::TYPE_EMPLOYEE :
240
                            $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE';
241
                            break;
242
 
243
                        default :
244
                            $type = 'LABEL_UNKNOWN';
245
                            break;
246
                    }
247
 
248
 
249
 
250
                    if($record['status'] == PerformanceEvaluationTest::STATUS_COMPLETED) {
251
                        $link_pdf = $this->url()->fromRoute('activities-center/performance-evaluation/report', ['id' => $record['uuid']]);
252
                        $link_take_a_test = '';
253
 
254
 
255
                    } else {
256
                        $link_pdf = '';
257
                        $link_take_a_test = $this->url()->fromRoute('activities-center/performance-evaluation/take-a-test', ['id' => $record['uuid']]);
258
                    }
259
 
260
 
261
                    $item = [
262
                        'last_date' => $last_date,
263
                        'form' => $record['form'],
264
                        'type' => $type,
265
                        'supervisor_first_name' => $record['supervisor_first_name'],
266
                        'supervisor_last_name' => $record['supervisor_last_name'],
267
                        'supervisor_email' => $record['supervisor_email'],
268
                        'employee_first_name' => $record['employee_first_name'],
269
                        'employee_last_name' => $record['employee_last_name'],
270
                        'employee_email' => $record['employee_email'],
271
                        'status' => $status,
272
                        'actions' => [
273
                            'link_pdf' => $link_pdf,
274
                            'link_take_a_test' => $link_take_a_test,
275
                        ]
276
                    ];
277
                    /*
278
                     if($testSelf) {
279
                     $item['actions']['link_report_self'] = $this->url()->fromRoute('performance-evaluation/evaluations/report-self', ['id' => $record['uuid'] ]);
280
                     } else{
281
                     $item['actions']['link_self'] = $this->url()->fromRoute('performance-evaluation/evaluations/self', ['id' => $record['uuid'] ]);
282
                     }
283
                     if($testBoth) {
284
                     $item['actions']['link_report_both'] = $this->url()->fromRoute('performance-evaluation/evaluations/report-both', ['id' => $record['uuid'] ]);
285
                     } else{
286
                     $item['actions']['link_both'] = $this->url()->fromRoute('performance-evaluation/evaluations/both', ['id' => $record['uuid'] ]);
287
                     }
288
                     if($testSupervisor) {
289
                     $item['actions']['link_report_superviser'] = $this->url()->fromRoute('performance-evaluation/evaluations/report-superviser', ['id' => $record['uuid'] ]);
290
                     } else{
291
                     $item['actions']['link_superviser'] = $this->url()->fromRoute('performance-evaluation/evaluations/superviser', ['id' => $record['uuid'] ]);
292
                     }*/
293
 
294
                    array_push($items, $item);
295
                }
296
 
297
                $data['items'] = $items;
298
                $data['total'] = $paginator->getTotalItemCount();
299
 
300
 
301
                return new JsonModel([
302
                    'success' => true,
303
                    'data' => $data
304
                ]);
305
            } else {
16768 efrain 306
 
15444 efrain 307
                if($this->cache->hasItem('ACTIVITY_CENTER_RELATIONAL')) {
308
                    $search =  $this->cache->getItem('ACTIVITY_CENTER_RELATIONAL');
309
                    $this->cache->removeItem('ACTIVITY_CENTER_RELATIONAL');
310
                } else {
311
                    $search = '';
312
                }
313
 
314
 
315
 
316
 
317
                $form = new PerformanceEvaluationTakeAnTestForm();
318
 
319
                $this->layout()->setTemplate('layout/layout-backend');
320
                $viewModel = new ViewModel();
321
                $viewModel->setTemplate('leaders-linked/activity-center-performance-evaluation/index.phtml');
322
                $viewModel->setVariables([
323
                    'search' => $search,
324
                    'form' => $form
325
                ]);
326
                return $viewModel;
327
            }
328
        } else {
329
            return new JsonModel([
330
                'success' => false,
331
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
332
            ]);
333
 
334
        }
335
    }
336
 
337
 
338
    public function takeaTestAction()
339
    {
340
        $request = $this->getRequest();
341
        $currentUserPlugin = $this->plugin('currentUserPlugin');
342
        $currentCompany = $currentUserPlugin->getCompany();
343
        $currentUser = $currentUserPlugin->getUser();
344
 
345
        $request = $this->getRequest();
346
        $uuid = $this->params()->fromRoute('id');
347
 
348
 
349
        if (!$uuid) {
350
            $data = [
351
                'success' => false,
352
                'data' => 'ERROR_INVALID_PARAMETER'
353
            ];
354
 
355
            return new JsonModel($data);
356
        }
357
 
358
        $performanceEvaluationTestMapper = PerformanceEvaluationTestMapper::getInstance($this->adapter);
359
        $performanceEvaluationTest = $performanceEvaluationTestMapper->fetchOneByUuid($uuid);
360
 
361
 
362
 
363
 
364
 
365
        if (!$performanceEvaluationTest) {
366
            $data = [
367
                'success' => false,
368
                'data' => 'ERROR_RECORD_NOT_FOUND'
369
            ];
370
 
371
            return new JsonModel($data);
372
        }
373
 
374
        if ($performanceEvaluationTest->company_id == $currentCompany->id) {
375
            switch ($performanceEvaluationTest->type)
376
            {
377
                case PerformanceEvaluationTest::TYPE_BOTH :
378
                    $ok = $performanceEvaluationTest->supervisor_id == $currentUser->id
379
                    || $performanceEvaluationTest->employee_id == $currentUser->id;
380
                    break;
381
 
382
                case PerformanceEvaluationTest::TYPE_SUPERVISOR :
383
                    $ok = $performanceEvaluationTest->supervisor_id == $currentUser->id;
384
                    break;
385
 
386
                case PerformanceEvaluationTest::TYPE_EMPLOYEE :
387
                    $ok =  $performanceEvaluationTest->employee_id == $currentUser->id;
388
                    break;
389
 
390
                default :
391
                    $ok = false;
392
                    break;
393
 
394
            }
395
        } else {
396
            $ok = false;
397
        }
398
 
399
        if(!$ok) {
400
            return new JsonModel([
401
                'success' => false,
402
                'data' => 'ERROR_UNAUTHORIZED'
403
            ]);
404
        }
405
 
406
 
407
 
408
        if ($request->isPost()) {
409
 
410
 
411
 
412
            $dataPost = $request->getPost()->toArray();
413
 
414
            $form = new PerformanceEvaluationTakeAnTestForm($this->adapter, $currentCompany->id);
415
            $form->setData($dataPost);
416
 
417
            if ($form->isValid()) {
418
 
419
                switch( $performanceEvaluationTest->type)
420
                {
421
                    case PerformanceEvaluationTest::TYPE_BOTH :
422
                        $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH';
423
                        break;
424
 
425
                    case PerformanceEvaluationTest::TYPE_SUPERVISOR :
426
                        $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR';
427
                        break;
428
 
429
                    case PerformanceEvaluationTest::TYPE_EMPLOYEE :
430
                        $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE';
431
                        break;
432
 
433
                    default :
434
                        $type = 'LABEL_UNKNOWN';
435
                        break;
436
                }
437
 
438
 
439
                $type = $this->translator->translate($type);
440
 
441
 
442
                $performanceEvaluationFormMapper = PerformanceEvaluationFormMapper::getInstance($this->adapter);
443
                $performanceEvaluationForm = $performanceEvaluationFormMapper->fetchOne($performanceEvaluationTest->form_id);
444
 
445
                $dataPost = (array) $form->getData();
446
 
447
 
448
                $content = json_decode($performanceEvaluationTest->content);
449
                $content->points = $dataPost['points'];
450
                $content->comment = $dataPost['comment'];
451
                $content->evaluation = [];
452
 
453
                foreach($content->competencies_selected as $competency)
454
                {
455
                    foreach($competency->behaviors as $behavior)
456
                    {
457
                        $key_comment = $competency->uuid . '-' . $behavior->uuid . '-comment';
458
                        $key_points = $competency->uuid . '-' . $behavior->uuid . '-points';
459
 
460
 
461
                        if(!empty($_POST[$key_comment])) {
16766 efrain 462
                            $value_comment = Functions::sanitizeFilterString($_POST[$key_comment]);
15444 efrain 463
                        } else {
464
                            $value_comment = '';
465
 
466
                        }
467
 
468
                        if(!empty($_POST[$key_points])) {
469
                            $value_points = intval( filter_var($_POST[$key_points], FILTER_SANITIZE_NUMBER_INT), 10);
470
                        } else {
471
                            $value_points = 0;
472
 
473
                        }
474
 
475
                        array_push($content->evaluation, [
476
                            'competency' => $competency->uuid,
477
                            'behavior' => $behavior->uuid,
478
                            'comment' => $value_comment,
479
                            'points' => $value_points
480
                        ]);
481
 
482
 
483
 
484
 
485
                    }
486
                }
487
 
488
 
489
                $performanceEvaluationTest->status = PerformanceEvaluationTest::STATUS_COMPLETED;
490
                $performanceEvaluationTest->content = json_encode($content);
491
 
492
                $result = $performanceEvaluationTestMapper->update($performanceEvaluationTest);
493
 
494
                if ($result) {
495
                    $this->logger->info('Se agrego la prueba de tipo '  . $type . ' de la Evaluación de  Desempeño : ' . $performanceEvaluationTest->uuid, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
496
                    $data = [
497
                        'success' => true,
498
                        'data' => 'LABEL_RECORD_UPDATED'
499
                    ];
500
                } else {
501
                    $data = [
502
                        'success' => false,
503
                        'data' => $performanceEvaluationTestMapper->getError()
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
            switch( $performanceEvaluationTest->type)
522
            {
523
                case PerformanceEvaluationTest::TYPE_BOTH :
524
                    $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH';
525
                    break;
526
 
527
                case PerformanceEvaluationTest::TYPE_SUPERVISOR :
528
                    $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR';
529
                    break;
530
 
531
                case PerformanceEvaluationTest::TYPE_EMPLOYEE :
532
                    $type = 'LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE';
533
                    break;
534
 
535
                default :
536
                    $type = 'LABEL_UNKNOWN';
537
                    break;
538
            }
539
 
540
 
541
            $performanceEvaluationFormMapper = PerformanceEvaluationFormMapper::getInstance($this->adapter);
542
            $performanceEvaluationForm = $performanceEvaluationFormMapper->fetchOne($performanceEvaluationTest->form_id);
543
 
544
 
545
            $content = json_decode($performanceEvaluationTest->content);
546
            foreach($content->competencies_selected as &$competency)
547
            {
548
                foreach($competency->behaviors as &$behavior)
549
                {
550
                    $behavior->competency_uuid = $competency->uuid;
551
                }
552
            }
553
 
554
            $userMapper = UserMapper::getInstance($this->adapter);
555
 
556
            if($performanceEvaluationTest->supervisor_id) {
557
                $user = $userMapper->fetchOne($performanceEvaluationTest->supervisor_id);
558
                $supervisor = $user->first_name . ' ' . $user->last_name;
559
            } else {
560
                $supervisor = '';
561
            }
562
 
563
            if($performanceEvaluationTest->employee_id) {
564
                $user = $userMapper->fetchOne($performanceEvaluationTest->employee_id);
565
                $employee = $user->first_name . ' ' . $user->last_name;
566
            } else {
567
                $employee = '';
568
            }
569
 
570
            $dt = \DateTime::createFromFormat('Y-m-d', $performanceEvaluationTest->last_date);
571
            if($dt) {
572
                $last_date = $dt->format('d/m/Y');
573
            } else {
574
                $last_date = '';
575
            }
576
 
577
 
578
            $data = [
579
               // 'uuid' =>  $content->uuid,
580
                'name' =>  $content->name,
581
                'functions' =>  $content->functions,
582
                'objectives' =>  $content->objectives,
583
                'form' => $performanceEvaluationForm->name,
584
                'type' => $type,
585
                'supervisor' => $supervisor,
586
                'employee' => $employee,
587
                'last_date' => $last_date,
588
                //'job_description_id_boss' =>  $content->job_description_id_boss,
589
                'competency_types' => [],
590
                'competencies' => [],
591
                'behaviors' => [],
592
                'competencies_selected' => [],
593
                'subordinates_selected' => [],
594
            ];
595
 
596
            foreach($content->competency_types as $record)
597
            {
598
               array_push($data['competency_types'], $record);
599
            }
600
 
601
            foreach($content->competencies as $record)
602
            {
603
                array_push($data['competencies'], $record);
604
            }
605
 
606
            foreach($content->behaviors as $record)
607
            {
608
                array_push($data['behaviors'], $record);
609
            }
610
 
611
            foreach($content->competencies_selected as $record)
612
            {
613
                array_push($data['competencies_selected'], $record);
614
            }
615
 
616
            foreach($content->subordinates_selected as $record)
617
            {
618
                array_push($data['subordinates_selected'], $record);
619
            }
620
 
621
 
622
 
623
            $data = [
624
                'success' => true,
625
                'data' => $data
626
            ];
627
 
628
 
629
            return new JsonModel($data);
630
        } else {
631
            $data = [
632
                'success' => false,
633
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
634
            ];
635
 
636
            return new JsonModel($data);
637
        }
638
 
639
        return new JsonModel($data);
640
    }
641
 
642
    public function reportAction()
643
    {
644
        $request = $this->getRequest();
645
        $currentUserPlugin = $this->plugin('currentUserPlugin');
646
        $currentCompany = $currentUserPlugin->getCompany();
647
        $currentUser = $currentUserPlugin->getUser();
648
 
649
        $request = $this->getRequest();
650
        $uuid = $this->params()->fromRoute('id');
651
 
652
        if (!$uuid) {
653
            $data = [
654
                'success' => false,
655
                'data' => 'ERROR_INVALID_PARAMETER'
656
            ];
657
 
658
            return new JsonModel($data);
659
        }
660
 
661
        $performanceEvaluationTestMapper = PerformanceEvaluationTestMapper::getInstance($this->adapter);
662
        $performanceEvaluationTest = $performanceEvaluationTestMapper->fetchOneByUuid($uuid);
663
        if (!$performanceEvaluationTest) {
664
            $data = [
665
                'success' => false,
666
                'data' => 'ERROR_RECORD_NOT_FOUND'
667
            ];
668
 
669
            return new JsonModel($data);
670
        }
671
 
672
 
673
        if ($performanceEvaluationTest->company_id != $currentCompany->id) {
674
            return new JsonModel([
675
                'success' => false,
676
                'data' => 'ERROR_UNAUTHORIZED'
677
            ]);
678
        }
679
 
680
        if ($performanceEvaluationTest->employee_id != $currentUser->id
681
            && $performanceEvaluationTest->supervisor_id != $currentUser->id ) {
682
            return new JsonModel([
683
                'success' => false,
684
                'data' => 'ERROR_UNAUTHORIZED'
685
            ]);
686
        }
687
 
688
        if($performanceEvaluationTest->status ==PerformanceEvaluationTest::STATUS_PENDING) {
689
            return new JsonModel([
690
                'success' => false,
691
                'data' =>   'ERROR_RECORD_IS_PENDING'
692
            ]);
693
 
694
        }
695
 
696
 
697
 
698
        $request = $this->getRequest();
699
        if ($request->isGet()) {
700
 
701
            switch( $performanceEvaluationTest->type)
702
            {
703
                case PerformanceEvaluationTest::TYPE_BOTH :
704
                    $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH');
705
                    break;
706
 
707
                case PerformanceEvaluationTest::TYPE_SUPERVISOR :
708
                    $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR');
709
                    break;
710
 
711
                case PerformanceEvaluationTest::TYPE_EMPLOYEE :
712
                    $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE');
713
                    break;
714
 
715
                default :
716
                    $type = $this->translator->translate('LABEL_UNKNOWN');
717
                    break;
718
            }
719
 
720
 
721
            $performanceEvaluationFormMapper = PerformanceEvaluationFormMapper::getInstance($this->adapter);
722
            $performanceEvaluationForm = $performanceEvaluationFormMapper->fetchOne($performanceEvaluationTest->form_id);
723
 
724
            $userMapper = UserMapper::getInstance($this->adapter);
725
            $employee = $userMapper->fetchOne($performanceEvaluationTest->employee_id);
726
 
727
            $filename = $performanceEvaluationForm->name . '-' . trim($employee->first_name) . '-' . trim($employee->last_name)  . '-' . $type . '-' . date('Y-m-d H:i a') . '.pdf';
728
 
729
            $filename = Functions::normalizeStringFilename( $filename );
730
 
731
 
732
 
733
 
734
            $content = base64_encode($this->renderPDF($performanceEvaluationTest));
735
            $data = [
736
                'success' => true,
737
                'data' => [
738
                    'basename' => $filename,
739
                    'content' => $content
740
                ]
741
            ];
742
 
743
            return new JsonModel($data);
744
 
745
            /*
746
 
747
            $content = $this->renderPdf($currentCompany, $jobDescription);
748
            $response = new Response();
749
            $response->setStatusCode(200);
750
            $response->setContent($content);
751
 
752
 
753
 
754
            $headers = $response->getHeaders();
755
            $headers->clearHeaders();
756
 
757
            $headers->addHeaderLine('Content-Description: File Transfer');
758
            $headers->addHeaderLine('Content-Type: application/pdf');
759
            //$headers->addHeaderLine('Content-Disposition: attachment; filename=' . $filename);
760
            $headers->addHeaderLine('Content-Transfer-Encoding: binary');
761
            $headers->addHeaderLine('Expires: 0');
762
            $headers->addHeaderLine('Cache-Control: must-revalidate');
763
            $headers->addHeaderLine('Pragma: public');
764
            return $response;
765
            */
766
 
767
 
768
 
769
 
770
            return ;
771
        } else {
772
 
773
 
774
            return new JsonModel([
775
                'success' => false,
776
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
777
            ]);
778
        }
779
    }
780
 
781
    /**
782
     * Render PDF
783
     * @param PerformanceEvaluationTest $performanceEvaluationTest
784
 
785
     * @return mixed
786
     */
787
    private function renderPDF($performanceEvaluationTest)
788
    {
789
        $request = $this->getRequest();
790
        $currentUserPlugin = $this->plugin('currentUserPlugin');
791
        $currentCompany = $currentUserPlugin->getCompany();
792
        $currentUser = $currentUserPlugin->getUser();
793
 
794
 
795
        //Generate New PDF
796
        $pdf = new PerformanceEvaluationInterviewPDF();
797
 
798
        $target_path = $this->config['leaderslinked.fullpath.company'] . DIRECTORY_SEPARATOR . $currentCompany->uuid;
799
        $header = $currentCompany->header ? $target_path . DIRECTORY_SEPARATOR . $currentCompany->header : '';
800
        if (empty($header) || !file_exists($header)) {
801
            $header = $this->config['leaderslinked.images_default.company_pdf_header'];
802
        }
803
 
804
        $footer = $currentCompany->footer ? $target_path . DIRECTORY_SEPARATOR . $currentCompany->footer : '';
805
        if (empty($footer) || !file_exists($footer)) {
806
            $footer = $this->config['leaderslinked.images_default.company_pdf_footer'];
807
        }
808
 
809
        $content = json_decode($performanceEvaluationTest->content);
810
 
811
        $pdf->header = $header;
812
        $pdf->footer = $footer;
813
        $pdf->translator = $this->translator;
814
 
815
        $pdf->SetMargins(10, 0, 10);
816
 
817
        $pdf->AliasNbPages();
818
        $pdf->AddPage();
819
 
820
        switch( $performanceEvaluationTest->type)
821
        {
822
            case PerformanceEvaluationTest::TYPE_BOTH :
823
                $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH');
824
                break;
825
 
826
            case PerformanceEvaluationTest::TYPE_SUPERVISOR :
827
                $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR');
828
                break;
829
 
830
            case PerformanceEvaluationTest::TYPE_EMPLOYEE :
831
                $type = $this->translator->translate('LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE');
832
                break;
833
 
834
            default :
835
                $type = $this->translator->translate('LABEL_UNKNOWN');
836
                break;
837
        }
838
 
839
        $dt = \DateTime::createFromFormat('Y-m-d H:i:s', $performanceEvaluationTest->updated_on);
840
 
841
        $evaluated = '';
842
        $evaluator = '';
843
 
844
        $userMapper = UserMapper::getInstance($this->adapter);
845
        if($performanceEvaluationTest->employee_id) {
846
            $user = $userMapper->fetchOne($performanceEvaluationTest->employee_id);
847
            if($user) {
848
                $evaluated = ucwords(strtolower(trim($user->first_name . ' ' . $user->last_name)));
849
            }
850
        }
851
        if($performanceEvaluationTest->supervisor_id) {
852
            $user = $userMapper->fetchOne($performanceEvaluationTest->supervisor_id);
853
            if($user) {
854
                $evaluator = ucwords(strtolower(trim($user->first_name . ' ' . $user->last_name)));
855
            }
856
        }
857
 
858
        $rows = [
859
            [
860
                'title' => $this->translator->translate('LABEL_TYPE') . ' : ',
861
                'content' => $type,
862
            ],
863
            [
864
                'title' => $this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_POSITION') . ' : ',
865
                'content' => $content->name,
866
            ],
867
            [
868
                'title' => $this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_EVALUATED')  . ' : ',
16768 efrain 869
                'content' => Functions::utf8_decode($evaluated),
15444 efrain 870
            ],
871
 
872
            [
873
                'title' => $this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_EVALUATE_SIGNATURE') . ' : ',
874
                'content' => ''
875
            ],
876
            [
877
                'title' => $this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_EVALUATOR') . ' : ',
16768 efrain 878
                'content' => Functions::utf8_decode($evaluator),
15444 efrain 879
            ],
880
            [
881
                'title' => $this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_EVALUATOR_SIGNATURE') . ' : ',
882
                'content' => ''
883
            ],
884
            [
885
                'title' => $this->translator->translate( 'LABEL_PDF_PERFORMANCE_EVALUATION_MANAGER_SIGNATURE') . ' : ',
886
                'content' => ''
887
            ],
888
            [
889
                'title' => $this->translator->translate('LABEL_DATE'),
890
                'content' => $dt->format('d/m/Y H:i a')
891
            ]
892
        ];
893
 
894
 
895
 
896
        $pdf->borderTable($this->translator->translate('LABEL_PDF_PERFORMANCE_EVALUATION_TITLE'), $rows);
897
 
898
        $pdf->evaluationTable($content->comment, $content->points);
899
 
900
 
901
 
902
        // Competencies
903
        if ($content->competencies_selected) {
904
            $pdf->AddPage();
905
 
906
            $i = 0;
907
 
908
            $max = count($content->competencies_selected);
909
            for($i = 0; $i < $max; $i++)
910
            {
911
                $competency_selected = $content->competencies_selected[$i];
912
 
913
                $j = $i + 1;
914
                $last = $j == $max;
915
                $pdf->competencyTable($i, $competency_selected, $content->competencies, $content->competency_types, $content->behaviors, $content->evaluation, $last);
916
            }
917
 
918
        }
919
 
920
        return $pdf->Output('S');
921
    }
922
}