Ver código fonte

Correctif : bug date Commande::findBy()

master
keun 7 anos atrás
pai
commit
180defa946
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      common/models/Commande.php

+ 1
- 1
common/models/Commande.php Ver arquivo

@@ -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']);

Carregando…
Cancelar
Salvar