소스 검색

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.
master
keun 7 년 전
부모
커밋
b7ee63adb4
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +5
    -2
      backend/controllers/CommandeController.php

+ 5
- 2
backend/controllers/CommandeController.php 파일 보기

@@ -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…
취소
저장