Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2323 nelberth 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;
9
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
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;
2354 nelberth 15
use LeadersLinked\Model\PlanningObjectivesAndGoalsGoals;
2323 nelberth 16
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
2354 nelberth 17
use LeadersLinked\Form\PlanningObjectivesAndGoalsGoalsForm;
2323 nelberth 18
 
2354 nelberth 19
use LeadersLinked\Library\Functions;
6395 nelberth 20
use LeadersLinked\Mapper\UserMapper;
2354 nelberth 21
 
3058 nelberth 22
use LeadersLinked\Mapper\PlanningObjectivesAndGoalsTaskMapper;
2354 nelberth 23
use LeadersLinked\Mapper\PlanningObjectivesAndGoalsGoalsMapper;
2362 nelberth 24
use LeadersLinked\Mapper\PlanningObjectivesAndGoalsObjectivesMapper;
2354 nelberth 25
 
2323 nelberth 26
class PlanningObjectivesAndGoalsGoalsController extends AbstractActionController
27
{
28
    /**
29
     *
30
     * @var AdapterInterface
31
     */
32
    private $adapter;
33
 
34
 
35
    /**
36
     *
37
     * @var AbstractAdapter
38
     */
39
    private $cache;
40
 
41
    /**
42
     *
43
     * @var  LoggerInterface
44
     */
45
    private $logger;
46
 
47
    /**
48
     *
49
     * @var array
50
     */
51
    private $config;
52
 
53
 
54
 
55
    /**
56
     *
57
     * @param AdapterInterface $adapter
58
     * @param AbstractAdapter $cache
59
     * @param LoggerInterface $logger
60
     * @param array $config
61
     */
62
    public function __construct($adapter, $cache , $logger, $config)
63
    {
64
        $this->adapter      = $adapter;
65
        $this->cache        = $cache;
66
        $this->logger       = $logger;
67
        $this->config       = $config;
68
 
69
 
70
    }
2674 nelberth 71
   /*
2401 nelberth 72
  public function idObjective($uuid){
2429 nelberth 73
        $currentUserPlugin = $this->plugin('currentUserPlugin');
2428 nelberth 74
        $currentCompany = $currentUserPlugin->getCompany();
2398 nelberth 75
        $planningObjectivesAndGoalsObjectivesMapper = PlanningObjectivesAndGoalsObjectivesMapper::getInstance($this->adapter);
3183 nelberth 76
        $objectives = $planningObjectivesAndGoalsObjectivesMapper->fetchOneByUuid($uuid);
2405 nelberth 77
 
3183 nelberth 78
        if (!$objectives) {
2405 nelberth 79
            return false;
80
 
81
        }else{
6228 nelberth 82
            if($objectives->company_id==$currentCompany->id){
3183 nelberth 83
                return $objectives;
2435 nelberth 84
            }else{
85
                return false;
86
            }
87
 
2430 nelberth 88
 
2428 nelberth 89
 
2405 nelberth 90
        }
2354 nelberth 91
 
92
 
2674 nelberth 93
   }*/
2398 nelberth 94
 
95
 
2323 nelberth 96
    public function indexAction()
6230 nelberth 97
    {
11092 nelberth 98
        $objective_uuid = $this->params()->fromRoute('objective_id');
2669 nelberth 99
 
11092 nelberth 100
        if(!$objective_uuid) {
2669 nelberth 101
            $data = [
102
                'success'   => false,
103
                'data'   => 'ERROR_INVALID_PARAMETER'
104
            ];
105
 
106
            return new JsonModel($data);
107
        }
108
 
2323 nelberth 109
        $request = $this->getRequest();
2407 nelberth 110
 
2330 nelberth 111
        if($request->isGet()) {
2323 nelberth 112
 
113
 
2354 nelberth 114
            $headers  = $request->getHeaders();
2323 nelberth 115
 
2354 nelberth 116
            $isJson = false;
117
            if($headers->has('Accept')) {
118
                $accept = $headers->get('Accept');
119
 
120
                $prioritized = $accept->getPrioritized();
121
 
122
                foreach($prioritized as $key => $value) {
123
                    $raw = trim($value->getRaw());
124
 
125
                    if(!$isJson) {
126
                        $isJson = strpos($raw, 'json');
127
                    }
128
 
129
                }
130
            }
131
 
132
            if($isJson) {
2665 nelberth 133
                $currentUserPlugin = $this->plugin('currentUserPlugin');
2666 nelberth 134
                $currentUser = $currentUserPlugin->getUser();
2665 nelberth 135
                $currentCompany = $currentUserPlugin->getCompany();
2657 nelberth 136
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
2664 nelberth 137
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'planning-objectives-and-goals/objectives/goals/edit');
138
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'planning-objectives-and-goals/objectives/goals/delete');
2657 nelberth 139
                $allowGoals = $acl->isAllowed($currentUser->usertype_id, 'planning-objectives-and-goals/objectives/goals/task');
2354 nelberth 140
 
141
                $search = $this->params()->fromQuery('search', []);
142
                $search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
143
 
144
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
3335 nelberth 145
                $page               = (intval($this->params()->fromQuery('start', 1), 10)/$records_x_page)+1;
2354 nelberth 146
                $order =  $this->params()->fromQuery('order', []);
147
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
148
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(filter_var( $order[0]['dir'], FILTER_SANITIZE_STRING));
149
 
150
                $fields =  ['title'];
151
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'title';
152
 
153
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
154
                    $order_direction = 'ASC';
155
                }
6231 nelberth 156
 
157
                $planningObjectivesAndGoalsObjectivesMapper = PlanningObjectivesAndGoalsObjectivesMapper::getInstance($this->adapter);
11092 nelberth 158
                $objectives = $planningObjectivesAndGoalsObjectivesMapper->fetchOneByUuid($objective_uuid);
6232 nelberth 159
 
3183 nelberth 160
                if (!$objectives) {
2362 nelberth 161
                    $data = [
162
                        'success' => false,
2669 nelberth 163
                        'data' => 'ERROR_RECORD_NOT_FOUND'
2362 nelberth 164
                    ];
2669 nelberth 165
 
2398 nelberth 166
 
167
                        return new JsonModel($data);
2362 nelberth 168
                }
2669 nelberth 169
 
6228 nelberth 170
                if($objectives->company_id!=$currentCompany->id){
2669 nelberth 171
                        $data = [
172
                            'success' => false,
173
                            'data' => 'ERROR_UNAUTHORIZED',
174
                        ];
175
                        return new JsonModel($data);
176
                }
2411 nelberth 177
 
2669 nelberth 178
 
2411 nelberth 179
                $planningObjectivesAndGoalsGoalsMapper = PlanningObjectivesAndGoalsGoalsMapper::getInstance($this->adapter);
3183 nelberth 180
                $paginator = $planningObjectivesAndGoalsGoalsMapper->fetchAllDataTable($search, $page, $records_x_page, $order_field, $order_direction, $objectives->id);
6233 nelberth 181
 
2412 nelberth 182
                $items = [];
183
 
184
                $records = $paginator->getCurrentItems();
3218 nelberth 185
                $planningObjectivesAndGoalsTaskMapper = PlanningObjectivesAndGoalsTaskMapper::getInstance($this->adapter);
2414 nelberth 186
                foreach($records as $record)
2354 nelberth 187
                {
2657 nelberth 188
 
3314 nelberth 189
                    $recordsTask = $planningObjectivesAndGoalsTaskMapper->fetchAll($record->id);
190
 
3072 nelberth 191
                    $costGoals=0;
192
                    $indicatorGoals=0;
193
                    foreach($recordsTask as $record2){
194
                        $indicatorGoals=$indicatorGoals+$record2->indicator;
195
                        $costGoals=$costGoals+$record2->cost;
196
                    }
3315 nelberth 197
                    $countRecordsTask = count($recordsTask);
198
                    if($countRecordsTask>0){
199
                        $indicatorGoals=round($indicatorGoals/$countRecordsTask, 2);
3190 nelberth 200
                    }else{
201
                        $indicatorGoals=-1;
3188 nelberth 202
                    }
3190 nelberth 203
 
2354 nelberth 204
                    $item = [
205
                        'title' => $record->title,
206
                        'description' => $record->description,
3190 nelberth 207
                        'progress'=>$indicatorGoals,
3072 nelberth 208
                        'cost' => $costGoals,
2657 nelberth 209
                        /*'DT_RowData'=>[
2354 nelberth 210
                            'id' =>$record->uuid,
211
                        ],
2657 nelberth 212
                        'DT_RowClass'=> 'Goals',*/
3057 nelberth 213
                        'status'=>$record->status,
2354 nelberth 214
                        'actions' => [
11092 nelberth 215
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('planning-objectives-and-goals/objectives/goals/edit', ['objective_id' => $objective_uuid,'id' => $record->uuid]) : '',
216
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('planning-objectives-and-goals/objectives/goals/delete', ['objective_id' => $objective_uuid,'id' => $record->uuid]) : '',
217
                            'link_goals' => $allowGoals ? $this->url()->fromRoute('planning-objectives-and-goals/objectives/goals/task', ['objective_id' => $objective_uuid,'goal_id' => $record->uuid]) : ''
2354 nelberth 218
                        ]
219
 
220
                    ];
2415 nelberth 221
 
2354 nelberth 222
 
223
                    array_push($items, $item);
224
                }
3171 nelberth 225
 
3315 nelberth 226
                $recordsGoals = $planningObjectivesAndGoalsGoalsMapper->fetchAll($objectives->id);
227
 
3171 nelberth 228
                $costObjective=0;
229
                $indicatorObjective=0;
230
                $contador=0;
3315 nelberth 231
                $countRecordsGoals = count($recordsGoals);
232
                if($countRecordsGoals>0){
3173 nelberth 233
                    $planningObjectivesAndGoalsTaskMapper = PlanningObjectivesAndGoalsTaskMapper::getInstance($this->adapter);
3314 nelberth 234
 
3173 nelberth 235
                    foreach($recordsGoals as $record)
236
                    {
3312 nelberth 237
                        $recordsTask = $planningObjectivesAndGoalsTaskMapper->fetchAll($record->id);
238
 
3173 nelberth 239
                        $costGoals=0;
240
                        $indicatorGoals=0;
3312 nelberth 241
                        $countRecordsTask = count($recordsTask);
242
                        if($countRecordsTask>0){
3173 nelberth 243
                            foreach($recordsTask as $record2){
244
                                $indicatorGoals=$indicatorGoals+$record2->indicator;
245
                                $costGoals=$costGoals+$record2->cost;
246
                            }
3312 nelberth 247
                            $indicatorObjective=$indicatorObjective+($indicatorGoals/$countRecordsTask);
3173 nelberth 248
                            $costObjective=$costObjective+$costGoals;
249
                            $contador++;
3171 nelberth 250
                        }
251
                    }
3175 nelberth 252
                    if($indicatorObjective==0){
3174 nelberth 253
                        $indicatorObjective=(-1);
3173 nelberth 254
                    }else{
3192 nelberth 255
                        $indicatorObjective=round($indicatorObjective/$contador,2);
256
 
3173 nelberth 257
                    }
258
                }else{
3178 nelberth 259
                    $indicatorObjective=(-2);
3171 nelberth 260
                }
261
                $date='Sin fecha';
3183 nelberth 262
                if($objectives->date!=NULL){
263
                    $dt = \DateTime::createFromFormat('Y-m-d', $objectives->date);
2675 nelberth 264
                    $date =  $dt->format('d/m/Y');
265
                }
3171 nelberth 266
 
267
 
268
 
2354 nelberth 269
                return new JsonModel([
270
                    'success' => true,
271
                    'data' => [
272
                        'items' => $items,
273
                        'total' => $paginator->getTotalItemCount(),
2462 nelberth 274
                        'objective' => [
3183 nelberth 275
                            'titleObjective' =>$objectives->title,
276
                            'descriptionObjective' =>$objectives->description,
3179 nelberth 277
                            'dateObjective' =>$date,
3180 nelberth 278
                            'costObjective' =>'$'.$costObjective,
3179 nelberth 279
                            'indicatorObjective'=>$indicatorObjective,
3184 nelberth 280
                            'statusObjective'=>$objectives->status=='a'?'LABEL_ACTIVE':'LABEL_INACTIVE',
2462 nelberth 281
 
282
                        ]
2354 nelberth 283
                    ]
284
                ]);
285
            } else  {
286
                $formAdd = new PlanningObjectivesAndGoalsGoalsForm();
287
                $this->layout()->setTemplate('layout/layout-backend');
288
                $viewModel = new ViewModel();
2355 nelberth 289
                $viewModel->setTemplate('leaders-linked/planning-objectives-and-goals-goals/index.phtml');
2354 nelberth 290
                $viewModel->setVariables([
2392 nelberth 291
                    'formAdd' => $formAdd,
11092 nelberth 292
                    'uuid'=> $objective_uuid
2392 nelberth 293
 
2354 nelberth 294
                ]);
295
                return $viewModel ;
296
            }
2330 nelberth 297
        } else {
298
            return new JsonModel([
299
                'success' => false,
300
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
2354 nelberth 301
            ]);
2330 nelberth 302
        }
2323 nelberth 303
    }
2354 nelberth 304
    public function addAction()
305
    {
306
      $currentUserPlugin = $this->plugin('currentUserPlugin');
307
        $currentUser = $currentUserPlugin->getUser();
308
        $currentCompany = $currentUserPlugin->getCompany();
11092 nelberth 309
        $objective_uuid = $this->params()->fromRoute('objective_id');
3150 nelberth 310
 
11092 nelberth 311
        if(!$objective_uuid) {
2674 nelberth 312
            $data = [
313
                'success'   => false,
314
                'data'   => 'ERROR_INVALID_PARAMETER'
315
            ];
316
 
317
            return new JsonModel($data);
318
        }
2354 nelberth 319
 
320
        $request = $this->getRequest();
321
        if($request->isPost()) {
322
            $form = new  PlanningObjectivesAndGoalsGoalsForm();
323
            $dataPost = $request->getPost()->toArray();
324
            $form->setData($dataPost);
325
 
326
            if($form->isValid()) {
2674 nelberth 327
                $planningObjectivesAndGoalsObjectivesMapper = PlanningObjectivesAndGoalsObjectivesMapper::getInstance($this->adapter);
11092 nelberth 328
                $objectives = $planningObjectivesAndGoalsObjectivesMapper->fetchOneByUuid($objective_uuid);
2674 nelberth 329
 
330
                if (!$objectives) {
2407 nelberth 331
                    $data = [
332
                        'success' => false,
2674 nelberth 333
                        'data' => 'ERROR_RECORD_NOT_FOUND'
2407 nelberth 334
                    ];
2674 nelberth 335
 
2407 nelberth 336
 
337
                        return new JsonModel($data);
338
                }
2674 nelberth 339
 
6228 nelberth 340
                if($objectives->company_id!=$currentCompany->id){
2674 nelberth 341
                        $data = [
342
                            'success' => false,
343
                            'data' => 'ERROR_UNAUTHORIZED',
344
                        ];
345
                        return new JsonModel($data);
346
                }
2354 nelberth 347
                $dataPost = (array) $form->getData();
3218 nelberth 348
                $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningObjectivesAndGoalsGoals::STATUS_INACTIVE;
6236 nelberth 349
                $dataPost['objective_id']=$objectives->id;
2354 nelberth 350
 
351
                $hydrator = new ObjectPropertyHydrator();
352
                $planningObjectivesAndGoalsGoals = new PlanningObjectivesAndGoalsGoals();
353
                $hydrator->hydrate($dataPost, $planningObjectivesAndGoalsGoals);
354
 
355
                $planningObjectivesAndGoalsGoalsMapper = PlanningObjectivesAndGoalsGoalsMapper::getInstance($this->adapter);
356
                $result = $planningObjectivesAndGoalsGoalsMapper->insert($planningObjectivesAndGoalsGoals);
357
 
358
                if($result) {
2397 nelberth 359
                    $this->logger->info('Se agrego la meta ' . $planningObjectivesAndGoalsGoals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
2354 nelberth 360
 
361
                    $data = [
362
                        'success'   => true,
363
                        'data'   => 'LABEL_RECORD_ADDED'
364
                    ];
365
                } else {
366
                    $data = [
367
                        'success'   => false,
368
                        'data'      => $planningObjectivesAndGoalsGoalsMapper->getError()
369
                    ];
370
 
371
                }
372
 
373
                return new JsonModel($data);
374
 
375
            } else {
376
                $messages = [];
377
                $form_messages = (array) $form->getMessages();
378
                foreach($form_messages  as $fieldname => $field_messages)
379
                {
380
 
381
                    $messages[$fieldname] = array_values($field_messages);
382
                }
383
 
384
                return new JsonModel([
385
                    'success'   => false,
386
                    'data'   => $messages
387
                ]);
388
            }
389
 
390
        } else {
391
            $data = [
392
                'success' => false,
393
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
394
            ];
395
 
396
            return new JsonModel($data);
397
        }
398
 
399
        return new JsonModel($data);
400
 
401
 
402
    }
403
 
404
 
405
 
406
     public function editAction(){
2449 nelberth 407
 
2354 nelberth 408
        $currentUserPlugin = $this->plugin('currentUserPlugin');
409
        $currentUser = $currentUserPlugin->getUser();
410
        $currentCompany = $currentUserPlugin->getCompany();
411
        $request = $this->getRequest();
412
        $uuid = $this->params()->fromRoute('id');
413
 
414
 
415
        if(!$uuid) {
416
            $data = [
417
                'success'   => false,
418
                'data'   => 'ERROR_INVALID_PARAMETER'
419
            ];
420
 
421
            return new JsonModel($data);
422
        }
2449 nelberth 423
 
11096 nelberth 424
        $objective_uuid = $this->params()->fromRoute('objective_id');
11092 nelberth 425
        if(!$objective_uuid) {
2441 nelberth 426
            $data = [
2674 nelberth 427
                'success'   => false,
428
                'data'   => 'ERROR_INVALID_PARAMETER'
429
            ];
430
 
431
            return new JsonModel($data);
432
        }
433
        $planningObjectivesAndGoalsObjectivesMapper = PlanningObjectivesAndGoalsObjectivesMapper::getInstance($this->adapter);
11092 nelberth 434
        $objectives = $planningObjectivesAndGoalsObjectivesMapper->fetchOneByUuid($objective_uuid);
2674 nelberth 435
 
436
        if (!$objectives) {
437
            $data = [
2441 nelberth 438
                'success' => false,
2674 nelberth 439
                'data' => 'ERROR_RECORD_NOT_FOUND'
2441 nelberth 440
            ];
2674 nelberth 441
 
2441 nelberth 442
 
443
                return new JsonModel($data);
444
        }
2674 nelberth 445
 
6228 nelberth 446
        if($objectives->company_id!=$currentCompany->id){
2674 nelberth 447
                $data = [
448
                    'success' => false,
449
                    'data' => 'ERROR_UNAUTHORIZED',
450
                ];
451
                return new JsonModel($data);
452
        }
2447 nelberth 453
 
2354 nelberth 454
        $planningObjectivesAndGoalsGoalsMapper = PlanningObjectivesAndGoalsGoalsMapper::getInstance($this->adapter);
455
        $goals = $planningObjectivesAndGoalsGoalsMapper->fetchOneByUuid($uuid);
456
 
457
        if (!$goals) {
458
            $data = [
459
                'success' => false,
460
                'data' => 'ERROR_RECORD_NOT_FOUND'
461
            ];
462
 
463
            return new JsonModel($data);
464
        }
2440 nelberth 465
 
2354 nelberth 466
 
467
        if($request->isPost()) {
468
            $form = new  PlanningObjectivesAndGoalsGoalsForm();
469
            $dataPost = $request->getPost()->toArray();
3151 nelberth 470
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningObjectivesAndGoalsGoals::STATUS_INACTIVE;
2354 nelberth 471
            $form->setData($dataPost);
472
 
473
            if($form->isValid()) {
474
                $dataPost = (array) $form->getData();
475
 
476
                $hydrator = new ObjectPropertyHydrator();
477
                $hydrator->hydrate($dataPost, $goals);
478
                $result = $planningObjectivesAndGoalsGoalsMapper->update($goals);
479
 
480
                if($result) {
2440 nelberth 481
                    $this->logger->info('Se actualizo la meta ' . $goals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
2354 nelberth 482
 
483
                    $data = [
484
                        'success' => true,
485
                        'data' => 'LABEL_RECORD_UPDATED'
486
                    ];
487
                } else {
488
                    $data = [
489
                        'success'   => false,
490
                        'data'      => $planningObjectivesAndGoalsGoalsMapper->getError()
491
                    ];
492
                }
493
 
494
                return new JsonModel($data);
495
 
496
            } else {
497
                $messages = [];
498
                $form_messages = (array) $form->getMessages();
499
                foreach($form_messages  as $fieldname => $field_messages)
500
                {
501
                    $messages[$fieldname] = array_values($field_messages);
502
                }
503
 
504
                return new JsonModel([
505
                    'success'   => false,
506
                    'data'   => $messages
507
                ]);
508
            }
509
        }else if ($request->isGet()) {
510
            $hydrator = new ObjectPropertyHydrator();
511
 
512
            $data = [
513
                'success' => true,
514
                'data' => $hydrator->extract($goals)
515
            ];
516
 
517
            return new JsonModel($data);
518
        } else {
519
            $data = [
520
                'success' => false,
521
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
522
            ];
523
 
524
            return new JsonModel($data);
525
        }
526
 
527
        return new JsonModel($data);
528
 
529
    }
530
 
531
 
532
 
533
 
534
    public function deleteAction(){
535
        $currentUserPlugin = $this->plugin('currentUserPlugin');
536
        $currentCompany = $currentUserPlugin->getCompany();
537
        $currentUser = $currentUserPlugin->getUser();
538
 
539
        $request = $this->getRequest();
540
        $uuid = $this->params()->fromRoute('id');
541
 
542
 
543
        if (!$uuid) {
544
            $data = [
545
                'success' => false,
546
                'data' => 'ERROR_INVALID_PARAMETER'
547
            ];
548
 
549
            return new JsonModel($data);
550
        }
551
 
11096 nelberth 552
        $objective_uuid = $this->params()->fromRoute('objective_id');
11092 nelberth 553
        if(!$objective_uuid) {
2449 nelberth 554
            $data = [
2674 nelberth 555
                'success'   => false,
556
                'data'   => 'ERROR_INVALID_PARAMETER'
557
            ];
558
 
559
            return new JsonModel($data);
560
        }
561
        $planningObjectivesAndGoalsObjectivesMapper = PlanningObjectivesAndGoalsObjectivesMapper::getInstance($this->adapter);
11092 nelberth 562
        $objectives = $planningObjectivesAndGoalsObjectivesMapper->fetchOneByUuid($objective_uuid);
2674 nelberth 563
 
564
        if (!$objectives) {
565
            $data = [
2449 nelberth 566
                'success' => false,
2674 nelberth 567
                'data' => 'ERROR_RECORD_NOT_FOUND'
2449 nelberth 568
            ];
2674 nelberth 569
 
2449 nelberth 570
 
571
                return new JsonModel($data);
572
        }
2674 nelberth 573
 
6228 nelberth 574
        if($objectives->company_id!=$currentCompany->id){
2674 nelberth 575
                $data = [
576
                    'success' => false,
577
                    'data' => 'ERROR_UNAUTHORIZED',
578
                ];
579
                return new JsonModel($data);
580
        }
2354 nelberth 581
 
582
 
583
        $planningObjectivesAndGoalsGoalsMapper = PlanningObjectivesAndGoalsGoalsMapper::getInstance($this->adapter);
584
        $goals = $planningObjectivesAndGoalsGoalsMapper->fetchOneByUuid($uuid);
585
 
586
        if (!$goals) {
587
            $data = [
588
                'success' => false,
589
                'data' => 'ERROR_RECORD_NOT_FOUND'
590
            ];
591
 
592
            return new JsonModel($data);
593
        }
2449 nelberth 594
 
2354 nelberth 595
 
596
        if ($request->isPost()) {
597
 
598
 
599
            $result = $planningObjectivesAndGoalsGoalsMapper->delete($goals->id);
600
            if ($result) {
2675 nelberth 601
                $this->logger->info('Se borro la meta con el titulo ' . $goals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
2354 nelberth 602
 
603
                $data = [
604
                    'success' => true,
605
                    'data' => 'LABEL_RECORD_DELETED'
606
                ];
607
            } else {
608
 
609
                $data = [
610
                    'success' => false,
611
                    'data' => $planningObjectivesAndGoalsGoalsMapper->getError()
612
                ];
613
 
614
                return new JsonModel($data);
615
            }
616
        } else {
617
            $data = [
618
                'success' => false,
619
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
620
            ];
621
 
622
            return new JsonModel($data);
623
        }
624
 
625
        return new JsonModel($data);
626
    }
627
 
2463 nelberth 628
 
2457 nelberth 629
 
2354 nelberth 630
 
2323 nelberth 631
}