Kaynağa Gözat

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

master
keun 8 yıl önce
ebeveyn
işleme
b26a5271d1
1 değiştirilmiş dosya ile 6 ekleme ve 1 silme
  1. +6
    -1
      backend/controllers/CommandeController.php

+ 6
- 1
backend/controllers/CommandeController.php Dosyayı Görüntüle

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

Yükleniyor…
İptal
Kaydet