Browse Source

Correction : le report comporte dans certains cas les points de vente d'une autre boulangerie.

Ajout de l'id_etablissement dans la récupération des points de vente.
prodstable
keun 7 years ago
parent
commit
b7ee63adb4
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      backend/controllers/CommandeController.php

+ 5
- 2
backend/controllers/CommandeController.php View File

@@ -65,7 +65,8 @@ class CommandeController extends BackendController {
$id_etablissement = Yii::$app->user->identity->id_etablissement ;
$commandes = Commande::findBy([
'date' => $date
'date' => $date,
'id_etablissement' => $id_etablissement
]) ;

foreach ($commandes as $c)
@@ -78,7 +79,9 @@ class CommandeController extends BackendController {
if($production)
{
$produits_selec = ProductionProduit::findProduits($production->id);
$points_vente = PointVente::find()->all();
$points_vente = PointVente::find()
->where(['id_etablissement' => $id_etablissement])
->all();
foreach ($points_vente as $pv)
$pv->initCommandes($commandes);


Loading…
Cancel
Save