@@ -102,7 +102,10 @@ class ProduitController extends BackendController | |||
$model->save() ; | |||
// on ajoute un enregistrement ProductionProduit pour chaque production | |||
$productions = Production::find()->where('date > '.date('Y-m-d'))->all() ; | |||
$productions = Production::find() | |||
->where('date > '.date('Y-m-d')) | |||
->andWhere(['id_etablissement' => Yii::$app->user->identity->id_etablissement]) | |||
->all() ; | |||
foreach($productions as $prod) { | |||
$production_produit = new ProductionProduit ; | |||
$production_produit->id_production = $prod->id ; |
@@ -65,7 +65,7 @@ class ProductionProduit extends \yii\db\ActiveRecord | |||
$commandes = Commande::find() | |||
->with('commandeProduits','user') | |||
->joinWith('production') | |||
->where(['production.id'=>$id_production]) | |||
->where(['production.id'=> $id_production]) | |||
->orderBy('date ASC') | |||
->all() ; | |||
@@ -51,7 +51,7 @@ class CommandeController extends \yii\web\Controller { | |||
$q->where(['id_production' => $production->id]) ; | |||
} ]) | |||
->where([ | |||
'id_etablissement' => Yii::$app->user->identity->id_etablissement, | |||
'id_etablissement' => $production->id_etablissement, | |||
]) | |||
->all(); | |||