浏览代码

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

prodstable
keun 7 年前
父节点
当前提交
e03708f75e
共有 1 个文件被更改,包括 10 次插入2 次删除
  1. +10
    -2
      backend/controllers/CommandeautoController.php

+ 10
- 2
backend/controllers/CommandeautoController.php 查看文件

@@ -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',[

正在加载...
取消
保存