Explorar el Código

Correction : impossible de supprimer la date de fin d'une commande récurrente

master
keun hace 7 años
padre
commit
e03708f75e
Se han modificado 1 ficheros con 10 adiciones y 2 borrados
  1. +10
    -2
      backend/controllers/CommandeautoController.php

+ 10
- 2
backend/controllers/CommandeautoController.php Ver fichero

@@ -126,9 +126,17 @@ class CommandeautoController extends BackendController {
->orderBy('order ASC')
->all();

if($model->load(Yii::$app->request->post()) && $model->validate() && $model->save())
if($model->load(Yii::$app->request->post()) && $model->validate())
{
$this->redirect(['commandeauto/index']) ;
if(!strlen($model->date_fin)){
$model->date_fin = null ;
}
if($model->save())
{
$this->redirect(['commandeauto/index']) ;
}
}
return $this->render('update',[

Cargando…
Cancelar
Guardar