Quellcode durchsuchen

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

prodstable
keun vor 8 Jahren
Ursprung
Commit
b26a5271d1
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      backend/controllers/CommandeController.php

+ 6
- 1
backend/controllers/CommandeController.php Datei anzeigen

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

Laden…
Abbrechen
Speichern