Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16766 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Authentication\AuthenticationService;
7
use Laminas\Authentication\Result as AuthResult;
8
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 9
 
16766 efrain 10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Mvc\I18n\Translator;
12
use Laminas\Log\LoggerInterface;
13
use Laminas\View\Model\ViewModel;
14
use Laminas\View\Model\JsonModel;
15
use LeadersLinked\Model\PlanningObjectives;
16
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
17
use LeadersLinked\Form\Planning\PlanningObjectivesForm;
18
use LeadersLinked\Library\PlanningPdfOne;
19
use LeadersLinked\Library\Functions;
20
use LeadersLinked\Mapper\UserMapper;
21
use LeadersLinked\Mapper\PlanningTaskMapper;
22
use LeadersLinked\Mapper\PlanningGoalsMapper;
23
use LeadersLinked\Mapper\PlanningObjectivesMapper;
24
use LeadersLinked\Mapper\PlanningTaskMembersMapper;
25
use LeadersLinked\Mapper\CompanyMapper;
26
 
27
class PlanningObjectivesController extends AbstractActionController
28
{
29
    /**
30
     *
31
     * @var AdapterInterface
32
     */
33
    private $adapter;
34
 
35
    /**
36
     *
37
     * @var  LoggerInterface
38
     */
39
    private $logger;
40
 
41
    /**
42
     *
43
     * @var array
44
     */
45
    private $config;
46
 
47
    /**
48
     *
49
     * @param AdapterInterface $adapter
50
     * @param LoggerInterface $logger
51
     * @param array $config
52
     */
16768 efrain 53
    public function __construct($adapter, $logger, $config)
16766 efrain 54
    {
16768 efrain 55
        $this->adapter = $adapter;
56
        $this->logger = $logger;
57
        $this->config = $config;
16766 efrain 58
    }
59
 
60
 
61
 
62
 
63
    public function indexAction()
64
    {
65
 
66
 
67
        $currentUserPlugin = $this->plugin('currentUserPlugin');
68
        $currentUser = $currentUserPlugin->getUser();
69
        $currentCompany = $currentUserPlugin->getCompany();
70
 
71
 
72
        $request = $this->getRequest();
73
        if($request->isGet()) {
74
 
75
 
76
            $headers  = $request->getHeaders();
77
 
78
            $isJson = false;
79
            if($headers->has('Accept')) {
80
                $accept = $headers->get('Accept');
81
 
82
                $prioritized = $accept->getPrioritized();
83
 
84
                foreach($prioritized as $key => $value) {
85
                    $raw = trim($value->getRaw());
86
 
87
                    if(!$isJson) {
88
                        $isJson = strpos($raw, 'json');
89
                    }
90
 
91
                }
92
            }
93
 
94
            if($isJson) {
95
 
96
 
97
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
98
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/edit');
99
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/delete');
100
                $allowObjective = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/goals');
101
                $allowObjectiveReport = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/report');
102
                $allowObjectiveReportAll = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/reportall');
103
 
104
 
105
 
106
                $search = $this->params()->fromQuery('search', []);
107
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
108
 
109
 
110
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
111
                $page               = (intval($this->params()->fromQuery('start', 1), 10)/$records_x_page)+1;
112
                $order =  $this->params()->fromQuery('order', []);
113
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
114
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(Functions::sanitizeFilterString($order[0]['dir']));
115
 
116
                $fields =  ['title', 'date'];
117
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'title';
118
 
119
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
120
                    $order_direction = 'ASC';
121
                }
122
 
123
 
124
                $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
125
 
126
                $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
127
 
128
                $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
129
 
130
                $paginator = $planningObjectivesMapper->fetchAllDataTable($search, $page, $records_x_page, $order_field, $order_direction, $currentCompany->id);
131
 
132
                $items = [];
133
 
134
                $records = $paginator->getCurrentItems();
135
 
136
                foreach($records as $record)
137
                {
138
 
139
 
140
                    /*
141
 
142
                    $recordsGoals = $planningGoalsMapper->fetchAll($record->id);
143
                    $costObjective=0;
144
                    $indicatorObjective=0;
145
                    $contador=0;
146
                    $countRecordsGoals = count($recordsGoals);
147
                    if($countRecordsGoals>0){
148
                        foreach($recordsGoals as $record2)
149
                        {
150
                            $recordsTask = $planningTaskMapper->fetchAll($record2->id);
151
                            $costGoals=0;
152
                            $indicatorGoals=0;
153
                            $countRecordsTask = count($recordsTask);
154
                            if($countRecordsTask>0){
155
                                foreach($recordsTask as $record3){
156
                                    $indicatorGoals=$indicatorGoals+$record3->indicator;
157
                                    $costGoals=$costGoals+$record3->cost;
158
                                }
159
                                $indicatorObjective=$indicatorObjective+($indicatorGoals/$countRecordsTask);
160
                                $costObjective=$costObjective+$costGoals;
161
                                $contador++;
162
                            }
163
                        }
164
                        if($indicatorObjective==0){
165
                            $indicatorObjective=(-1);
166
                        }else{
167
                            $indicatorObjective=round($indicatorObjective/$contador,2);
168
 
169
                        }
170
                    }else{
171
                        $indicatorObjective=(-2);
172
                    }*/
173
 
174
                    $date='';
175
                    if($record->date!=NULL){
176
                        $dt = \DateTime::createFromFormat('Y-m-d', $record->date);
177
                        $date =  $dt->format('d/m/Y');
178
                    }
179
                    $item = [
180
                        'title' => $record->title,
181
                        'description' => $record->description,
182
                        'date'=> $date,
183
                        'cost'=> 0,
184
                        'progress'=>0,
185
                        'status'=> $record->status,
186
                        'link_report_all'> $allowObjectiveReportAll ? $this->url()->fromRoute('planning/objectives/reportall') : '',
187
                        'actions' => [
188
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('planning/objectives/edit', ['id' => $record->uuid]) : '',
189
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('planning/objectives/delete', ['id' => $record->uuid]) : '',
190
                            'link_objective' => $allowObjective ? $this->url()->fromRoute('planning/objectives/goals', ['objective_id' => $record->uuid]) : '',
191
                            'link_objective_report' => $allowObjectiveReport ? $this->url()->fromRoute('planning/objectives/report', ['id' => $record->uuid]) : '',
192
 
193
                        ]
194
 
195
                    ];
196
 
197
 
198
                    array_push($items, $item);
199
 
200
                }
201
 
202
                $recordsObjectivesModule = $planningObjectivesMapper->fetchAll($currentCompany->id);
203
                $costModule=0;
204
                $indicatorModule=0;
205
                $contadorTotalModule=0;
206
                $countRecordsObjectives = count($recordsObjectivesModule);
207
                if($countRecordsObjectives>0){
208
 
209
                    foreach($recordsObjectivesModule as $record)
210
                    {
211
 
212
                        $recordsGoalsModule = $planningGoalsMapper->fetchAll($record->id);
213
                        $costObjectiveModule=0;
214
                        $indicatorObjectiveModule=0;
215
                        $contadorModule=0;
216
                        $countRecordsGoalsModule = count($recordsGoalsModule);
217
                        if($countRecordsGoalsModule>0){
218
 
219
                            foreach($recordsGoalsModule as $record2)
220
                            {
221
 
222
                                $recordsTaskModule = $planningTaskMapper->fetchAll($record2->id);
223
                                $costGoalsModule=0;
224
                                $indicatorGoalsModule=0;
225
                                $countRecordsTaskModule = count($recordsTaskModule);
226
                                if($countRecordsTaskModule>0){
227
                                    foreach($recordsTaskModule as $record3){
228
 
229
                                        $indicatorGoalsModule=$indicatorGoalsModule+$record3->indicator;
230
                                        $costGoalsModule=$costGoalsModule+$record3->cost;
231
                                    }
232
                                    $indicatorObjectiveModule=$indicatorObjectiveModule+($indicatorGoalsModule/$countRecordsTaskModule);
233
                                    $costModule=$costModule+$costGoalsModule;
234
                                    $contadorModule++;
235
                                }
236
                            }
237
                            if($indicatorObjectiveModule>0){
238
                                $indicatorModule=$indicatorModule+($indicatorObjectiveModule/$contadorModule);
239
                                $contadorTotalModule++;
240
                            }
241
                        }
242
 
243
                    }
244
                    if($indicatorModule==0){
245
                        $indicatorModule=(-5);
246
                    }else{
247
                        $indicatorModule=round($indicatorModule/$contadorTotalModule,2);
248
                    }
249
                }else{
250
                    $indicatorModule=(-3);
251
                }
252
 
253
 
254
                return new JsonModel([
255
                    'success' => true,
256
                    'data' => [
257
                        'items' => $items,
258
                        'total' => $paginator->getTotalItemCount(),
259
                        'module'=>[
260
                            'costModule' => '$'.$costModule,
261
                            'indicatorModule'=>$indicatorModule
262
                        ]
263
                    ]
264
                ]);
265
 
266
            } else  {
267
                $formAdd = new PlanningObjectivesForm();
268
                $this->layout()->setTemplate('layout/layout-backend');
269
                $viewModel = new ViewModel();
270
                $viewModel->setTemplate('leaders-linked/planning-objectives/index.phtml');
271
                $viewModel->setVariables([
272
                    'formAdd' => $formAdd,
273
                ]);
274
                return $viewModel ;
275
            }
276
        } else {
277
            return new JsonModel([
278
                'success' => false,
279
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
280
            ]);
281
        }
282
    }
283
    public function addAction()
284
    {
285
      $currentUserPlugin = $this->plugin('currentUserPlugin');
286
        $currentUser = $currentUserPlugin->getUser();
287
        $currentCompany = $currentUserPlugin->getCompany();
288
 
289
        $request = $this->getRequest();
290
        if($request->isPost()) {
291
            $form = new  PlanningObjectivesForm();
292
            $dataPost = $request->getPost()->toArray();
293
 
294
            $form->setData($dataPost);
295
 
296
            if($form->isValid()) {
297
                $dataPost = (array) $form->getData();
298
                $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningObjectives::STATUS_INACTIVE;
299
                $dataPost['company_id']=$currentCompany->id;
300
 
301
                $hydrator = new ObjectPropertyHydrator();
302
                $planningObjectives = new PlanningObjectives();
303
                $hydrator->hydrate($dataPost, $planningObjectives);
304
 
305
                $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
306
                $result = $planningObjectivesMapper->insert($planningObjectives);
307
 
308
                if($result) {
309
                    $this->logger->info('Se agrego el objetivo ' . $planningObjectives->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
310
 
311
                    $data = [
312
                        'success'   => true,
313
                        'data'   => 'LABEL_RECORD_ADDED'
314
                    ];
315
                } else {
316
                    $data = [
317
                        'success'   => false,
318
                        'data'      => $planningObjectivesMapper->getError()
319
                    ];
320
 
321
                }
322
 
323
                return new JsonModel($data);
324
 
325
            } else {
326
                $messages = [];
327
                $form_messages = (array) $form->getMessages();
328
                foreach($form_messages  as $fieldname => $field_messages)
329
                {
330
 
331
                    $messages[$fieldname] = array_values($field_messages);
332
                }
333
 
334
                return new JsonModel([
335
                    'success'   => false,
336
                    'data'   => $messages
337
                ]);
338
            }
339
 
340
        } else {
341
            $data = [
342
                'success' => false,
343
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
344
            ];
345
 
346
            return new JsonModel($data);
347
        }
348
 
349
        return new JsonModel($data);
350
 
351
 
352
    }
353
 
354
 
355
 
356
     public function editAction(){
357
 
358
        $currentUserPlugin = $this->plugin('currentUserPlugin');
359
        $currentUser = $currentUserPlugin->getUser();
360
        $currentCompany = $currentUserPlugin->getCompany();
361
        $request = $this->getRequest();
362
        $uuid = $this->params()->fromRoute('id');
363
 
364
 
365
        if(!$uuid) {
366
            $data = [
367
                'success'   => false,
368
                'data'   => 'ERROR_INVALID_PARAMETER'
369
            ];
370
 
371
            return new JsonModel($data);
372
        }
373
 
374
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
375
        $objectives = $planningObjectivesMapper->fetchOneByUuid($uuid);
376
 
377
        if (!$objectives) {
378
            $data = [
379
                'success' => false,
380
                'data' => 'ERROR_RECORD_NOT_FOUND'
381
            ];
382
 
383
            return new JsonModel($data);
384
        }
385
 
386
        if ($objectives->company_id != $currentCompany->id) {
387
            return new JsonModel([
388
                'success' => false,
389
                'data' => 'ERROR_UNAUTHORIZED'
390
            ]);
391
        }
392
 
393
        if($request->isPost()) {
394
            $form = new  PlanningObjectivesForm();
395
            $dataPost = $request->getPost()->toArray();
396
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningObjectives::STATUS_INACTIVE;
397
            $form->setData($dataPost);
398
 
399
            if($form->isValid()) {
400
                $dataPost = (array) $form->getData();
401
 
402
                $hydrator = new ObjectPropertyHydrator();
403
                $hydrator->hydrate($dataPost, $objectives);
404
                $result = $planningObjectivesMapper->update($objectives);
405
 
406
                if($result) {
407
                    $this->logger->info('Se actualizo el objetivo ' . $objectives->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
408
 
409
                    $data = [
410
                        'success' => true,
411
                        'data' => 'LABEL_RECORD_UPDATED'
412
                    ];
413
                } else {
414
                    $data = [
415
                        'success'   => false,
416
                        'data'      => $planningObjectivesMapper->getError()
417
                    ];
418
                }
419
 
420
                return new JsonModel($data);
421
 
422
            } else {
423
                $messages = [];
424
                $form_messages = (array) $form->getMessages();
425
                foreach($form_messages  as $fieldname => $field_messages)
426
                {
427
                    $messages[$fieldname] = array_values($field_messages);
428
                }
429
 
430
                return new JsonModel([
431
                    'success'   => false,
432
                    'data'   => $messages
433
                ]);
434
            }
435
        }else if ($request->isGet()) {
436
            $hydrator = new ObjectPropertyHydrator();
437
 
438
            $data = [
439
                'success' => true,
440
                'data' => $hydrator->extract($objectives)
441
            ];
442
 
443
            return new JsonModel($data);
444
        } else {
445
            $data = [
446
                'success' => false,
447
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
448
            ];
449
 
450
            return new JsonModel($data);
451
        }
452
 
453
        return new JsonModel($data);
454
 
455
    }
456
 
457
 
458
 
459
 
460
    public function deleteAction(){
461
        $currentUserPlugin = $this->plugin('currentUserPlugin');
462
        $currentCompany = $currentUserPlugin->getCompany();
463
        $currentUser = $currentUserPlugin->getUser();
464
 
465
        $request = $this->getRequest();
466
        $uuid = $this->params()->fromRoute('id');
467
 
468
 
469
        if (!$uuid) {
470
            $data = [
471
                'success' => false,
472
                'data' => 'ERROR_INVALID_PARAMETER'
473
            ];
474
 
475
            return new JsonModel($data);
476
        }
477
 
478
 
479
 
480
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
481
        $objectives = $planningObjectivesMapper->fetchOneByUuid($uuid);
482
 
483
        if (!$objectives) {
484
            $data = [
485
                'success' => false,
486
                'data' => 'ERROR_RECORD_NOT_FOUND'
487
            ];
488
 
489
            return new JsonModel($data);
490
        }
491
 
492
        if ($objectives->company_id != $currentCompany->id) {
493
            return new JsonModel([
494
                'success' => false,
495
                'data' => 'ERROR_UNAUTHORIZED'
496
            ]);
497
        }
498
 
499
        if ($request->isPost()) {
500
 
501
 
502
            $result = $planningObjectivesMapper->delete($objectives->id);
503
            if ($result) {
504
                $this->logger->info('Se borro el objetivo con el titulo ' . $objectives->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
505
 
506
                $data = [
507
                    'success' => true,
508
                    'data' => 'LABEL_RECORD_DELETED'
509
                ];
510
            } else {
511
 
512
                $data = [
513
                    'success' => false,
514
                    'data' => $planningObjectivesMapper->getError()
515
                ];
516
 
517
                return new JsonModel($data);
518
            }
519
        } else {
520
            $data = [
521
                'success' => false,
522
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
523
            ];
524
 
525
            return new JsonModel($data);
526
        }
527
 
528
        return new JsonModel($data);
529
    }
530
 
531
 
532
 
533
    public function reportAction() {
534
        $currentUserPlugin = $this->plugin('currentUserPlugin');
535
        $currentUser = $currentUserPlugin->getUser();
536
        $currentCompany = $currentUserPlugin->getCompany();
537
 
538
        $request = $this->getRequest();
539
        $uuid = $this->params()->fromRoute('id');
540
 
541
 
542
        if (!$uuid) {
543
            $data = [
544
                'success' => false,
545
                'data' => 'ERROR_INVALID_PARAMETER'
546
            ];
547
 
548
            return new JsonModel($data);
549
        }
550
 
551
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
552
        $recordsObjectives = $planningObjectivesMapper->fetchOneByUuid($uuid);
553
 
554
        if (!$recordsObjectives) {
555
            $data = [
556
                'success' => false,
557
                'data' => 'Objetivo ERROR_RECORD_NOT_FOUND'
558
            ];
559
 
560
            return new JsonModel($data);
561
        }
562
 
563
        if ($recordsObjectives->company_id != $currentCompany->id) {
564
            return new JsonModel([
565
                'success' => false,
566
                'data' => 'ERROR_UNAUTHORIZED'
567
            ]);
568
        }
569
        $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
570
        $recordsGoals = $planningGoalsMapper->fetchAll($recordsObjectives->id);
571
 
572
        $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
573
        $userMapper = UserMapper::getInstance($this->adapter);
574
        $PlanningTaskMemberMapper = PlanningTaskMembersMapper::getInstance($this->adapter);
575
 
576
            foreach($recordsGoals as $record2){
577
 
578
                $recordsTask = $planningTaskMapper->fetchAll($record2->id);
579
 
580
 
581
                foreach($recordsTask as $record3){
582
                    $recordsTaskMembers =  $PlanningTaskMemberMapper->fetchAll($record3->id);
583
                    $usersName=[];
584
                    foreach($recordsTaskMembers as $record4){
585
                        $datosUser = $userMapper->fetchOne($record4->user_id);
586
                        $usersName[$record4->id]=$datosUser->first_name.' '.$datosUser->last_name;
587
                    }
588
                    $record3->who=$usersName;
589
                }
590
 
591
 
592
 
593
 
594
                $record2->task = $recordsTask;
595
            }
596
           $items=[
597
            'objetives' => [
598
                'title'=>$recordsObjectives->title,
599
                'description' =>$recordsObjectives->description,
600
                'date'=>$recordsObjectives->date,
601
                'status'=>$recordsObjectives->status,
602
                'goals'=>$recordsGoals
603
            ]
604
            ];
605
 
606
 
607
 
608
 
609
 
610
        if ($request->isGet()) {
611
 
612
 
613
            return $this->renderPdf($currentCompany,$items);
614
        } else {
615
            $data = [
616
                'success' => false,
617
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
618
            ];
619
 
620
            return new JsonModel($data);
621
        }
622
 
623
        return new JsonModel($data);
624
    }
625
    public function reportallAction() {
626
        $currentUserPlugin = $this->plugin('currentUserPlugin');
627
        $currentUser = $currentUserPlugin->getUser();
628
        $currentCompany = $currentUserPlugin->getCompany();
629
 
630
        $request = $this->getRequest();
631
 
632
 
633
 
634
 
635
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
636
        $recordsObjectives = $planningObjectivesMapper->fetchAll($currentCompany->id);
637
 
638
        if (!$recordsObjectives) {
639
            $data = [
640
                'success' => false,
641
                'data' => 'Objetivo ERROR_RECORD_NOT_FOUND'
642
            ];
643
 
644
            return new JsonModel($data);
645
        }
646
 
647
 
648
        $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
649
 
650
        $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
651
        $items;
652
        $contador=0;
653
        foreach($recordsObjectives as $record){
654
 
655
            if ($record->company_id != $currentCompany->id) {
656
                return new JsonModel([
657
                    'success' => false,
658
                    'data' => 'ERROR_UNAUTHORIZED'
659
                ]);
660
            }
661
            $userMapper = UserMapper::getInstance($this->adapter);
662
            $PlanningTaskMemberMapper = PlanningTaskMembersMapper::getInstance($this->adapter);
663
            $recordsGoals = $planningGoalsMapper->fetchAll($record->id);
664
 
665
                foreach($recordsGoals as $record2){
666
 
667
                    $recordsTask = $planningTaskMapper->fetchAll($record2->id);
668
 
669
 
670
                    foreach($recordsTask as $record3){
671
                        $recordsTaskMembers =  $PlanningTaskMemberMapper->fetchAll($record3->id);
672
                        $usersName=[];
673
                        foreach($recordsTaskMembers as $record4){
674
                            $datosUser = $userMapper->fetchOne($record4->user_id);
675
                            $usersName[$record4->id]=$datosUser->first_name.' '.$datosUser->last_name;
676
                        }
677
                        $record3->who=$usersName;
678
                    }
679
 
680
                    $record2->task = $recordsTask;
681
                }
682
         /*   $item=[
683
                $contador => [
684
                    'title'=>$record->title,
685
                    'description' =>$record->description,
686
                    'date'=>$record->date,
687
                    'status'=>$record->status,
688
                    'goals'=>$recordsGoals
689
                ]
690
            ];
691
            array_push($items, $item);
692
            $contador++;*/
693
        $record->goals=$recordsGoals;
694
        }
695
 
696
 
697
 
698
        if ($request->isGet()) {
699
 
700
 
701
            return $this->renderPdf($currentCompany,$recordsObjectives,2);
702
        } else {
703
            $data = [
704
                'success' => false,
705
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
706
            ];
707
 
708
            return new JsonModel($data);
709
        }
710
 
711
        return new JsonModel($data);
712
    }
713
    public function matrizAction() {
714
        $currentUserPlugin = $this->plugin('currentUserPlugin');
715
        $currentUser = $currentUserPlugin->getUser();
716
        $currentCompany = $currentUserPlugin->getCompany();
717
 
718
        $request = $this->getRequest();
719
 
720
 
721
 
722
 
723
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
724
        $recordsObjectives = $planningObjectivesMapper->fetchAll($currentCompany->id);
725
 
726
        if (!$recordsObjectives) {
727
            $data = [
728
                'success' => false,
729
                'data' => 'Objetivo ERROR_RECORD_NOT_FOUND'
730
            ];
731
 
732
            return new JsonModel($data);
733
        }
734
 
735
 
736
        $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
737
 
738
        $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
739
        $items;
740
        $contador=0;
741
        foreach($recordsObjectives as $record){
742
 
743
            if ($record->company_id != $currentCompany->id) {
744
                return new JsonModel([
745
                    'success' => false,
746
                    'data' => 'ERROR_UNAUTHORIZED'
747
                ]);
748
            }
749
            $recordsGoals = $planningGoalsMapper->fetchAll($record->id);
750
 
751
                foreach($recordsGoals as $record2){
752
 
753
                    $recordsTask = $planningTaskMapper->fetchAll($record2->id);
754
                    $record2->task = $recordsTask;
755
                }
756
         /*   $item=[
757
                $contador => [
758
                    'title'=>$record->title,
759
                    'description' =>$record->description,
760
                    'date'=>$record->date,
761
                    'status'=>$record->status,
762
                    'goals'=>$recordsGoals
763
                ]
764
            ];
765
            array_push($items, $item);
766
            $contador++;*/
767
        $record->goals=$recordsGoals;
768
        }
769
 
770
 
771
 
772
        if ($request->isGet()) {
773
 
774
 
775
            return $this->renderPdf($currentCompany,$recordsObjectives,3);
776
        } else {
777
            $data = [
778
                'success' => false,
779
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
780
            ];
781
 
782
            return new JsonModel($data);
783
        }
784
 
785
        return new JsonModel($data);
786
    }
787
 
788
 
789
 
790
    public function renderPDF($currentCompany,$items,$switch=1) {
791
 
792
        $pdf = new PlanningPdfOne();
793
 
794
        $pdf->header = '';
795
        $pdf->footer = '';
796
        if ($currentCompany) {
797
            //get company Data
798
            $companyMapper = CompanyMapper::getInstance($this->adapter);
799
            $company = $companyMapper->fetchOne($currentCompany->id);
800
 
801
            $target_path = $this->config['leaderslinked.fullpath.company'] . DIRECTORY_SEPARATOR . $company->uuid;
802
 
803
            $pdf->header = $company->header ? $target_path . DIRECTORY_SEPARATOR . $company->header : '';
804
            $pdf->footer = $company->footer ? $target_path . DIRECTORY_SEPARATOR . $company->footer : '';
805
        }
806
 
807
        $pdf->SetMargins(10,200,10);
808
        $pdf->SetAutoPageBreak(true,40);
809
        $pdf->AliasNbPages();
810
 
811
 
812
            if($switch==3){
813
                $pdf->borderTableMatriz('Planificacion - Objetivos y metas',$items);
814
            }else if($switch==2){
815
                $pdf->borderTableAll('Planificacion - Objetivos y metas',$items);
816
 
817
            }else{
818
                $pdf->borderTable('Planificacion - Objetivos y metas',$items);
819
 
820
            }
821
 
822
 
823
 
824
 
825
        return $pdf->Output();
826
    }
827
}
828