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