@@ -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()) { |