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