Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 219 Rev 220
Línea 423... Línea 423...
423
        if($request->isPost()) {
423
        if($request->isPost()) {
Línea 424... Línea 424...
424
            
424
            
425
            $formUserMapper = CompanySelfEvaluationFormUserMapper::getInstance($this->adapter);
425
            $formUserMapper = CompanySelfEvaluationFormUserMapper::getInstance($this->adapter);
Línea 426... Línea -...
426
            $formUser = $formUserMapper->fetchAllByCompanyIdAndFormIdAndUserId($form->company_id, $form->id, $user->id);
-
 
427
            
-
 
428
            return new JsonModel([
-
 
429
                'success'   => false,
-
 
430
                'user'   => $formUser,
-
 
431
            ]);
426
            $formUser = $formUserMapper->fetchAllByCompanyIdAndFormIdAndUserId($form->company_id, $form->id, $user->id);
Línea 432... Línea 427...
432
            
427
            
433
            
428
           
434
            
429
            
435
            if(!$formUser) {
430
            if(!$formUser) {
436
                return new JsonModel([
431
                return new JsonModel([
437
                    'success'   => false,
432
                    'success'   => false,
Línea 438... Línea -...
438
                    'data'   => 'ERROR_UNKNOW_USER_ACCESS_TO_FORM'
-
 
Línea 439... Línea 433...
439
                ]);
433
                    'data'   => 'ERROR_UNKNOW_USER_ACCESS_TO_FORM'
Línea 440... Línea 434...
440
            }
434
                ]);
Línea 441... Línea 435...
441
            
435
            }
442
 
436