Procházet zdrojové kódy

Correctif accès exclusif points de vente

feature/rotating_product
Guillaume Bourgeois před 3 měsíci
rodič
revize
43e8c8630a
1 změnil soubory, kde provedl 10 přidání a 5 odebrání
  1. +10
    -5
      producer/controllers/OrderController.php

+ 10
- 5
producer/controllers/OrderController.php Zobrazit soubor

@@ -817,7 +817,10 @@ class OrderController extends ProducerBaseController
$orderModule = $this->getOrderModule();

$user = GlobalParam::getCurrentUser();
$userProducer = $this->getUserProducerModule()->getRepository()->findOneUserProducer($user);
$userProducer = null;
if($user) {
$userProducer = $this->getUserProducerModule()->getRepository()->findOneUserProducer($user);
}
$pointsSaleArray = PointSale::find();

if ($distribution) {
@@ -913,10 +916,12 @@ class OrderController extends ProducerBaseController
}

// Filtre par accès exclusif aux points de vente
$pointsSaleArray = $this->getUserProducerModule()->getSolver()->filterPointsSaleByExclusiveAccess(
$userProducer,
$pointsSaleArray
);
if($userProducer) {
$pointsSaleArray = $this->getUserProducerModule()->getSolver()->filterPointsSaleByExclusiveAccess(
$userProducer,
$pointsSaleArray
);
}

return $pointsSaleArray;
}

Načítá se…
Zrušit
Uložit