浏览代码

Correctif : bug date Commande::findBy()

master
keun 7 年前
父节点
当前提交
180defa946
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      common/models/Commande.php

+ 1
- 1
common/models/Commande.php 查看文件

@@ -362,7 +362,7 @@ class Commande extends \yii\db\ActiveRecord
if(isset($params['date']))
$commandes = $commandes->where(['production.date' => $date]);
$commandes = $commandes->where(['production.date' => $params['date']]);
if(isset($params['order']))
$commandes = $commandes->orderBy('date '.$params['order']);

正在加载...
取消
保存