|
|
|
|
|
|
|
|
$model->save() ; |
|
|
$model->save() ; |
|
|
|
|
|
|
|
|
// on ajoute un enregistrement ProductionProduit pour chaque production |
|
|
// 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) { |
|
|
foreach($productions as $prod) { |
|
|
$production_produit = new ProductionProduit ; |
|
|
$production_produit = new ProductionProduit ; |
|
|
$production_produit->id_production = $prod->id ; |
|
|
$production_produit->id_production = $prod->id ; |