소스 검색

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

Loading…
취소
저장