浏览代码

Résoudre bug concernant les jours de production non liés à l'établissement courant (backend)

master
keun 8 年前
父节点
当前提交
b26a5271d1
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. +6
    -1
      backend/controllers/CommandeController.php

+ 6
- 1
backend/controllers/CommandeController.php 查看文件

@@ -392,7 +392,12 @@ class CommandeController extends \yii\web\Controller {
}

// jours de production
$jours_production = Production::find()->where(['actif' => 1])->all();
$jours_production = Production::find()
->where([
'actif' => 1,
'id_etablissement' => Yii::$app->user->identity->id_etablissement
])
->all();

$datas = [
'produits' => $produits,

正在加载...
取消
保存