Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 14308 | Rev 15444 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 14308 Rev 14989
Línea 10... Línea 10...
10
use Laminas\Log\LoggerInterface;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\ViewModel;
11
use Laminas\View\Model\ViewModel;
12
use Laminas\View\Model\JsonModel;
12
use Laminas\View\Model\JsonModel;
13
use LeadersLinked\Library\Functions;
13
use LeadersLinked\Library\Functions;
14
use LeadersLinked\Mapper\BehaviorMapper;
14
use LeadersLinked\Mapper\BehaviorMapper;
15
use LeadersLinked\Mapper\CompetencyMapper;
-
 
16
use LeadersLinked\Mapper\BehaviorCompetencyMapper;
-
 
17
use LeadersLinked\Form\BehaviorForm;
15
use LeadersLinked\Form\BehaviorForm;
18
use LeadersLinked\Model\Behavior;
16
use LeadersLinked\Model\Behavior;
19
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
17
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
Línea 20... Línea 18...
20
 
18
 
Línea 56... Línea 54...
56
        $this->cache = $cache;
54
        $this->cache = $cache;
57
        $this->logger = $logger;
55
        $this->logger = $logger;
58
        $this->config = $config;
56
        $this->config = $config;
59
    }
57
    }
Línea 60... Línea 58...
60
 
58
 
61
    public function indexAction() {
59
    public function indexAction()
62
 
60
    {
63
        $currentUserPlugin = $this->plugin('currentUserPlugin');
61
        $currentUserPlugin = $this->plugin('currentUserPlugin');
64
        $currentUser = $currentUserPlugin->getUser();
62
        $currentUser = $currentUserPlugin->getUser();
65
        $currentCompany = $currentUserPlugin->getCompany();
63
        $currentCompany = $currentUserPlugin->getCompany();
66
 
64
        
67
        $request = $this->getRequest();
65
        $request = $this->getRequest();
68
 
66
        
69
        $request = $this->getRequest();
67
        $request = $this->getRequest();
70
        if ($request->isGet()) {
68
        if($request->isGet()) {
71
 
69
            
72
 
70
            
73
            $headers = $request->getHeaders();
71
            $headers  = $request->getHeaders();
74
 
72
            
75
            $isJson = false;
73
            $isJson = false;
76
            if ($headers->has('Accept')) {
74
            if($headers->has('Accept')) {
77
                $accept = $headers->get('Accept');
75
                $accept = $headers->get('Accept');
78
 
76
                
79
                $prioritized = $accept->getPrioritized();
77
                $prioritized = $accept->getPrioritized();
80
 
78
                
81
                foreach ($prioritized as $key => $value) {
79
                foreach($prioritized as $key => $value) {
82
                    $raw = trim($value->getRaw());
80
                    $raw = trim($value->getRaw());
83
 
81
                    
84
                    if (!$isJson) {
82
                    if(!$isJson) {
85
                        $isJson = strpos($raw, 'json');
83
                        $isJson = strpos($raw, 'json');
-
 
84
                    }
86
                    }
85
                    
87
                }
86
                }
-
 
87
            }
Línea 88... Línea 88...
88
            }
88
            
-
 
89
 
-
 
90
            if($isJson) {
-
 
91
                
-
 
92
                
-
 
93
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
-
 
94
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'settings/behaviors/edit');
-
 
95
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'settings/behaviors/delete');
-
 
96
                
-
 
97
                
-
 
98
                
-
 
99
                
-
 
100
                $search = $this->params()->fromQuery('search');
-
 
101
                $search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING); 
-
 
102
                
-
 
103
                $page               = intval($this->params()->fromQuery('start', 1), 10);
-
 
104
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
-
 
105
                $order =  $this->params()->fromQuery('order', []);
-
 
106
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
-
 
107
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(filter_var( $order[0]['dir'], FILTER_SANITIZE_STRING));
-
 
108
                
-
 
109
                $fields =  ['description'];
-
 
110
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'description';
-
 
111
                
-
 
112
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
89
 
113
                    $order_direction = 'ASC';
90
            if ($isJson) {
114
                }
91
 
115
                
92
                $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
116
                $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
93
 
117
                
-
 
118
                if($currentCompany) {
-
 
119
                    $paginator = $behaviorMapper->fetchAllDataTableByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
94
                $records = $currentCompany ?
120
                    
-
 
121
                } else {
-
 
122
                    $paginator = $behaviorMapper->fetchAllDataTable($search, $page, $records_x_page, $order_field, $order_direction);
95
                        $behaviorMapper->fetchAllCompanyId($currentCompany->id) :
123
                    
96
                        $behaviorMapper->fetchAllByDefault();
124
                }
-
 
125
                
97
 
126
                $items = [];
-
 
127
                $records = $paginator->getCurrentItems();
98
                $items = [];
128
                foreach($records as $record)
99
                foreach ($records as $record) {
-
 
100
                    $item = [
129
                {
-
 
130
                    $item = [
-
 
131
                        'description' => $record->description,
-
 
132
                        'status' => $record->status,
-
 
133
                        'actions' => [
-
 
134
                            'link_edit' => $allowEdit ?  $this->url()->fromRoute('settings/behaviors/edit', ['id' => $record->uuid ]) : '',
-
 
135
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('settings/behaviors/delete', ['id' => $record->uuid ]) : '',
101
                        'uuid' => $record->uuid,
136
                        ],
102
                        'description' => $record->description,
137
              
103
                    ];
138
                    ];
104
 
139
                    
105
                    array_push($items, $item);
140
                    array_push($items, $item);
106
                }
141
                }
107
 
142
                
108
                return new JsonModel([
143
                return new JsonModel([
-
 
144
                    'success' => true,
-
 
145
                    'data' => [
-
 
146
                        'items' => $items,
109
                    'success' => true,
147
                        'total' => $paginator->getTotalItemCount(),
110
                    'data' => $items
148
                    ]
-
 
149
                ]);
111
                ]);
150
            } else  {
112
            } else {
151
                $form = new BehaviorForm();
113
 
152
                
114
                return new JsonModel([
153
                $this->layout()->setTemplate('layout/layout-backend');
115
                    'success' => false,
154
                $viewModel = new ViewModel();
116
                    'data' => 'ERROR_METHOD_NOT_ALLOWED'
155
                $viewModel->setTemplate('leaders-linked/behaviors/index.phtml');
117
                ]);
156
                $viewModel->setVariable('form', $form);
-
 
157
                return $viewModel ;
118
                ;
158
            }
119
            }
159
            
120
        } else {
160
        } else {
121
            return new JsonModel([
161
            return new JsonModel([
122
                'success' => false,
162
                'success' => false,
123
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
-
 
124
            ]);
163
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
125
            ;
164
            ]);;
Línea 126... Línea 165...
126
        }
165
        }
127
    }
166
    }
Línea 133... Línea 172...
133
 
172
 
Línea 134... Línea 173...
134
        $request = $this->getRequest();
173
        $request = $this->getRequest();
-
 
174
 
-
 
175
 
-
 
176
        if ($request->isPost()) {
-
 
177
            
135
 
178
            $inline = $this->params()->fromRoute('inline');
136
 
179
            $inline = $inline == 'yes' ? true : false;
-
 
180
            
-
 
181
            $form = new BehaviorForm();
-
 
182
            $dataPost = $request->getPost()->toArray();
-
 
183
            
Línea 137... Línea 184...
137
        if ($request->isPost()) {
184
            if($inline) {
138
            $form = new BehaviorForm();
-
 
139
            $dataPost = $request->getPost()->toArray();
185
                $dataPost['status'] = Behavior::STATUS_ACTIVE;
-
 
186
            }
140
 
187
 
Línea 141... Línea 188...
141
            $form->setData($dataPost);
188
            $form->setData($dataPost);
142
 
189
            if ($form->isValid()) {
143
            if ($form->isValid()) {
190
 
Línea -... Línea 191...
-
 
191
                $dataPost = (array) $form->getData();
144
                $dataPost = (array) $form->getData();
192
 
145
 
193
                $hydrator = new ObjectPropertyHydrator();
146
                $hydrator = new ObjectPropertyHydrator();
194
                $behavior = new Behavior();
147
                $behavior = new Behavior();
-
 
148
                $hydrator->hydrate($dataPost, $behavior);
195
                $hydrator->hydrate($dataPost, $behavior);
149
 
196
 
150
                if (!$behavior->status) {
197
                
151
                    $behavior->status = Behavior::STATUS_INACTIVE;
198
                if(empty($dataPost['status'])) {
Línea 152... Línea 199...
152
                }
199
                    $behavior->status = Behavior::STATUS_INACTIVE;
153
 
-
 
154
 
200
                }
155
                if ($currentCompany) {
-
 
156
                    $behavior->company_id = $currentCompany->id;
201
                
157
                }
202
                if ($currentCompany) {
158
 
203
                    $behavior->company_id = $currentCompany->id;
159
                $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
-
 
160
 
-
 
161
                $recordExists = $behaviorMapper->fetchOneByDescription($dataPost['description'], $currentCompany ? $currentCompany->id : null);
-
 
162
 
-
 
163
                if ($recordExists) {
204
                }
164
 
205
 
165
                    $data = [
206
                $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
166
                        'success' => false,
207
                $result = $behaviorMapper->insert($behavior);
167
                        'message' => 'El registro ya existe'
-
 
168
                    ];
-
 
169
                } else {
-
 
170
 
-
 
171
                    $result = $behaviorMapper->insert($behavior);
-
 
172
 
208
                if ($result) {
173
                    if ($result) {
209
                    
-
 
210
                    if($inline) {
174
 
211
                        
175
                        $this->logger->info('Se agrego la conducta observable ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
212
                        $behavior = $behaviorMapper->fetchOne($behavior->id);
-
 
213
                        
-
 
214
                        $response = [
176
 
215
                            'success' => true,
177
                        $recordExists = $behaviorMapper->fetchOneByDescription($dataPost['description'], $currentCompany ? $currentCompany->id : null);
216
                            'data' => [ 
178
 
217
                                'message' => 'LABEL_RECORD_ADDED',
-
 
218
                                'behavior' => [
179
                        if ($recordExists) {
219
                                    'uuid' => $behavior->uuid,
180
                            $data = [
220
                                    'description' => $behavior->description,
181
                                'success' => true,
221
                                ]
182
                                'uuid' => $recordExists->uuid
222
                            ]
183
                            ];
223
                        ];
-
 
224
                    } else {
-
 
225
                    
-
 
226
                        $response = [
-
 
227
                            'success' => true,
-
 
228
                            'data' => 'LABEL_RECORD_ADDED',
-
 
229
                        ];
-
 
230
                    }
-
 
231
                        
184
                        }
232
                    $this->logger->info('Se agrego la conducta observable ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
Línea 185... Línea 233...
185
                    } else {
233
                        
186
                        $data = [
234
                } else {
187
                            'success' => false,
235
                    $response = [
188
                            'data' => $behaviorMapper->getError()
236
                        'success' => false,
189
                        ];
237
                                'data' => $behaviorMapper->getError()
Línea 214... Línea 262...
214
        }
262
        }
Línea 215... Línea 263...
215
 
263
 
216
        return new JsonModel($data);
264
        return new JsonModel($data);
Línea 217... Línea 265...
217
    }
265
    }
-
 
266
 
218
 
267
    public function editAction() 
219
    public function editAction() {
268
    {
-
 
269
        $currentUserPlugin = $this->plugin('currentUserPlugin');
Línea 220... Línea 270...
220
        $currentUserPlugin = $this->plugin('currentUserPlugin');
270
        $currentUser = $currentUserPlugin->getUser();
221
        $currentUser = $currentUserPlugin->getUser();
271
        $currentCompany = $currentUserPlugin->getCompany();
Línea 241... Línea 291...
241
                'data' => 'ERROR_RECORD_NOT_FOUND'
291
                'data' => 'ERROR_RECORD_NOT_FOUND'
242
            ];
292
            ];
Línea 243... Línea 293...
243
 
293
 
244
            return new JsonModel($data);
294
            return new JsonModel($data);
-
 
295
        }
-
 
296
        
-
 
297
        if($currentCompany) {
-
 
298
            
-
 
299
            if($behavior->company_id != $currentCompany->id) {
-
 
300
                $response = [
-
 
301
                    'success' => false,
-
 
302
                    'data' =>  'ERROR_UNAUTHORIZED'
-
 
303
                ];
-
 
304
                
-
 
305
                return new JsonModel($response);
-
 
306
            }
-
 
307
            
-
 
308
        } else {
-
 
309
            if($behavior->company_id) {
-
 
310
                $response = [
-
 
311
                    'success' => false,
-
 
312
                    'data' =>  'ERROR_UNAUTHORIZED'
-
 
313
                ];
-
 
314
                
-
 
315
                return new JsonModel($response);
-
 
316
            }
Línea 245... Línea 317...
245
        }
317
        }
246
 
318
 
247
        if ($request->isPost()) {
319
        if ($request->isPost()) {
Línea 253... Línea 325...
253
            if ($form->isValid()) {
325
            if ($form->isValid()) {
254
                $dataPost = (array) $form->getData();
326
                $dataPost = (array) $form->getData();
Línea 255... Línea 327...
255
 
327
 
256
                $hydrator = new ObjectPropertyHydrator();
328
                $hydrator = new ObjectPropertyHydrator();
257
                $hydrator->hydrate($dataPost, $behavior);
329
                $hydrator->hydrate($dataPost, $behavior);
258
 
330
                
259
                if (!$behavior->status) {
331
                if(empty($dataPost['status'])) {
260
                    $behavior->status = Behavior::STATUS_INACTIVE;
332
                    $behavior->status = Behavior::STATUS_INACTIVE;
Línea 261... Línea 333...
261
                }
333
                }
262
 
-
 
263
                $result = $behaviorMapper->update($behavior);
334
 
264
 
335
                $result = $behaviorMapper->update($behavior);
Línea 265... Línea 336...
265
                if ($result) {
336
                if ($result) {
266
                    $this->logger->info('Se actualizo la conducta observable ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
337
                    $this->logger->info('Se actualizo la conducta observable ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
Línea 308... Línea 379...
308
        }
379
        }
Línea 309... Línea 380...
309
 
380
 
310
        return new JsonModel($data);
381
        return new JsonModel($data);
Línea 311... Línea 382...
311
    }
382
    }
-
 
383
 
312
 
384
    public function deleteAction() 
313
    public function deleteAction() {
385
    {
-
 
386
        $currentUserPlugin = $this->plugin('currentUserPlugin');
Línea 314... Línea 387...
314
        $currentUserPlugin = $this->plugin('currentUserPlugin');
387
        $currentUser = $currentUserPlugin->getUser();
315
        $currentUser = $currentUserPlugin->getUser();
388
        $currentCompany = $currentUserPlugin->getCompany();
-
 
389
 
316
 
390
        $request = $this->getRequest();
-
 
391
        if ($request->isPost()) {
317
        $request = $this->getRequest();
392
            
-
 
393
            $id = $this->params()->fromRoute('id');
-
 
394
            if (!$id) {
-
 
395
                $response = [
-
 
396
                    'success' => false,
-
 
397
                    'data' => 'ERROR_INVALID_PARAMETER'
-
 
398
                ];
-
 
399
    
-
 
400
                return new JsonModel($response);
-
 
401
            }
-
 
402
    
318
        $id = $this->params()->fromRoute('id');
403
            
319
        $compId = $this->params()->fromRoute('idComp');
404
            $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
320
        // print_r($request);
405
            $behavior = $behaviorMapper->fetchOneByUuid($id);
321
        if (!$id || !$compId) {
406
            if (!$behavior) {
-
 
407
                $response = [
-
 
408
                    'success' => false,
-
 
409
                    'data' => 'ERROR_RECORD_NOT_FOUND'
322
            $data = [
410
                ];
-
 
411
    
-
 
412
                return new JsonModel($response);
-
 
413
            }
-
 
414
            
-
 
415
            if($currentCompany) {
-
 
416
                
-
 
417
                if($behavior->company_id != $currentCompany->id) {
-
 
418
                    $response = [
-
 
419
                        'success' => false,
-
 
420
                        'data' =>  'ERROR_UNAUTHORIZED'
-
 
421
                    ];
-
 
422
                    
-
 
423
                    return new JsonModel($response);
-
 
424
                }
-
 
425
                
-
 
426
            } else {
-
 
427
                if($behavior->company_id) {
-
 
428
                    $response = [
323
                'success' => false,
429
                        'success' => false,
324
                'data' => 'ERROR_INVALID_PARAMETER'
430
                        'data' =>  'ERROR_UNAUTHORIZED'
-
 
431
                    ];
325
            ];
432
                    
Línea 326... Línea -...
326
 
-
 
327
            return new JsonModel($data);
-
 
328
        }
-
 
329
 
-
 
330
        $competencyMapper = CompetencyMapper::getInstance($this->adapter);
-
 
331
        $competency = $competencyMapper->fetchOneByUuid($compId);
-
 
332
        if (!$competency) {
433
                    return new JsonModel($response);
Línea 333... Línea -...
333
            $data = [
-
 
334
                'success' => false,
-
 
Línea 335... Línea 434...
335
                'data' => 'ERROR_RECORD_NOT_FOUND'
434
                }
-
 
435
            }
-
 
436
 
-
 
437
            
-
 
438
 
-
 
439
        
-
 
440
            $result = $behaviorMapper->delete($behavior->id);
-
 
441
            if ($result) {
-
 
442
                $this->logger->info('Se borro la conducta observable : ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
-
 
443
 
-
 
444
                $response = [
-
 
445
                    'success' => true,
336
            ];
446
                    'data' => 'LABEL_RECORD_DELETED'
-
 
447
                ];
-
 
448
            } else {
-
 
449
 
337
 
450
                $response = [
338
            return new JsonModel($data);
451
                    'success' => false,
339
        }
452
                    'data' => $behaviorMapper->getError()
340
        
453
                ];
341
        $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
454
 
Línea 342... Línea -...
342
        $behavior = $behaviorMapper->fetchOneByUuid($id);
-
 
343
        if (!$behavior) {
455
            }
Línea -... Línea 456...
-
 
456
        } else {
-
 
457
            $response = [
344
            $data = [
458
                'success' => false,
-
 
459
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
-
 
460
            ];
345
                'success' => false,
461
 
346
                'data' => 'ERROR_RECORD_NOT_FOUND'
462
        }
347
            ];
463
 
348
 
464
        return new JsonModel($response);
349
            return new JsonModel($data);
465
    }
350
        }
466
    
351
 
467
    public function importAction() {
352
 
468
        $currentUserPlugin = $this->plugin('currentUserPlugin');
353
        $behaviorCompetencyMapper = BehaviorCompetencyMapper::getInstance($this->adapter);
469
        $currentUser = $currentUserPlugin->getUser();
354
        $behaviorCompetency = $behaviorCompetencyMapper->fetchOneByBehaviorIdAndCompetencyId($behavior->id, $competency->id );
470
        $currentCompany = $currentUserPlugin->getCompany();
355
 
471
        
356
        if (!$behaviorCompetency) {
472
        if (!$currentCompany) {
-
 
473
            $data = [
-
 
474
                'success' => false,
357
            $data = [
475
                'data' => 'ERROR_UNAUTHORIZED'
-
 
476
            ];
-
 
477
            
358
                'success' => false,
478
            return new JsonModel($data);
-
 
479
        }
-
 
480
        
359
                'data' => 'ERROR_RECORD_NOT_FOUND'
481
        $request = $this->getRequest();
-
 
482
        
-
 
483
        if ($request->isPost()) {
360
            ];
484
            
-
 
485
            $behaviorMapper =BehaviorMapper::getInstance($this->adapter);
-
 
486
            $behaviorsDefault = $behaviorMapper->fetchAllByDefault();
-
 
487
            
361
 
488
            $new_records = 0;
-
 
489
            foreach ($behaviorsDefault as $behaviorDefault) {
-
 
490
                
-
 
491
                $behavior = $behaviorMapper->fetchOneByCompanyIdAndIdDefault($currentCompany->id, $behaviorDefault->id);
-
 
492
                if (!$behavior) {
-
 
493
                    $behavior = new Behavior();
-
 
494
                    $behavior->behavior_id_default  = $behaviorDefault->id;
-
 
495
                    $behavior->company_id           = $currentCompany->id;
-
 
496
                    $behavior->description          = $behaviorDefault->description;
-
 
497
                    $behavior->status               = $behaviorDefault->status;
-
 
498
                   
-
 
499
  
-
 
500
                    
-
 
501
                    
-
 
502
                    
-
 
503
                    if ($behaviorMapper->insert($behavior)) {
-
 
504
                        $new_records++;
-
 
505
                    } else {
-
 
506
                        $data = [
Línea -... Línea 507...
-
 
507
                            'success' => false,
-
 
508
                            'data' => 'ERROR_CANT_ADD_BEHAVIOR'
-
 
509
                        ];
362
            return new JsonModel($data);
510
                        
363
        }
511
                        return new JsonModel($data);
364
 
512
                    }
-
 
513
                }
-
 
514
            }
-
 
515
 
-
 
516
            if ($new_records) {
-
 
517
                
-
 
518
                if (1 == $new_records) {
-
 
519
                    $data = [
-
 
520
                        'success' => true,
-
 
521
                        'data' => 'LABEL_1_BEHAVIOR_IMPORTED'
-
 
522
                    ];
365
        if ($request->isPost()) {
523
                    
366
            // $result = $behaviorMapper->delete($behavior->id);
524
                    return new JsonModel($data);
367
            $result = $behaviorCompetencyMapper->delete($behaviorCompetency);
-
 
368
            if ($result) {
525
                } else {
369
                $this->logger->info('Se borro el tipo de competencia ' . $behavior->description, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
526
                    $data = [
370
 
527
                        'success' => true,
371
                $data = [
528
                        'data' => $new_records . ' LABEL_MULTI_BEHAVIORS_IMPORTED'
372
                    'success' => true,
529
                    ];
373
                    'data' => 'LABEL_RECORD_DELETED'
530
                    
374
                ];
531
                    return new JsonModel($data);
375
            } else {
532
                }
376
 
533
            } else {
377
                $data = [
534
                $data = [
378
                    'success' => false,
535
                    'success' => true,
379
                    'data' => $behaviorMapper->getError()
536
                    'data' => 'LABEL_NO_BEHAVIOR_IMPORTED'
380
                ];
537
                ];
381
 
538
                
382
                return new JsonModel($data);
539
                return new JsonModel($data);
383
            }
540
            }
384
        } else {
541
        } else {
385
            $data = [
542
            $data = [
-
 
543
                'success' => false,
-
 
544
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
-
 
545
            ];
-
 
546
            
Línea 386... Línea 547...
386
                'success' => false,
547
            return new JsonModel($data);