Explorar el Código

Modification d'un document : redirection vers download si document validé

dev
Guillaume Bourgeois hace 5 años
padre
commit
2860f40346
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      backend/controllers/DocumentController.php

+ 5
- 1
backend/controllers/DocumentController.php Ver fichero

@@ -111,8 +111,12 @@ class DocumentController extends BackendController
'id' => $id
]);

if(!$model) {
throw new NotFoundHttpException('Le document n\'a pas été trouvé.');
}

if ($model->isStatusValid()) {
throw new UserException('Vous ne pouvez pas modifier un document validé.');
return $this->redirect(['download', 'id' => $id]) ;
}

if ($model && $model->load(Yii::$app->request->post()) && $model->save()) {

Cargando…
Cancelar
Guardar