Ver código fonte

Correctifs id_etablissement

prodstable
keun 7 anos atrás
pai
commit
18c59512f6
3 arquivos alterados com 6 adições e 3 exclusões
  1. +4
    -1
      backend/controllers/ProduitController.php
  2. +1
    -1
      common/models/ProductionProduit.php
  3. +1
    -1
      frontend/controllers/CommandeController.php

+ 4
- 1
backend/controllers/ProduitController.php Ver arquivo

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

+ 1
- 1
common/models/ProductionProduit.php Ver arquivo

@@ -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() ;

+ 1
- 1
frontend/controllers/CommandeController.php Ver arquivo

@@ -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();

Carregando…
Cancelar
Salvar