|
|
@@ -8,7 +8,6 @@ use Lc\CaracoleBundle\Builder\Credit\CreditHistoryBuilder; |
|
|
|
use Lc\CaracoleBundle\Builder\File\DocumentBuilder; |
|
|
|
use Lc\CaracoleBundle\Event\Order\CartChangeEvent; |
|
|
|
use Lc\CaracoleBundle\Event\Order\OrderShopChangeStatusEvent; |
|
|
|
use Lc\CaracoleBundle\Factory\Credit\CreditHistoryFactory; |
|
|
|
use Lc\CaracoleBundle\Factory\File\DocumentFactory; |
|
|
|
use Lc\CaracoleBundle\Factory\Order\OrderPaymentFactory; |
|
|
|
use Lc\CaracoleBundle\Factory\Order\OrderProductFactory; |
|
|
@@ -33,7 +32,6 @@ use Lc\CaracoleBundle\Model\Product\ProductFamilyModel; |
|
|
|
use Lc\CaracoleBundle\Model\Reduction\ReductionCartInterface; |
|
|
|
use Lc\CaracoleBundle\Model\Reduction\ReductionCreditInterface; |
|
|
|
use Lc\CaracoleBundle\Model\Section\SectionInterface; |
|
|
|
use Lc\CaracoleBundle\Model\Section\SectionModel; |
|
|
|
use Lc\CaracoleBundle\Model\User\VisitorInterface; |
|
|
|
use Lc\CaracoleBundle\Repository\Order\OrderProductStore; |
|
|
|
use Lc\CaracoleBundle\Repository\Order\OrderShopStore; |
|
|
@@ -51,9 +49,6 @@ use Lc\SovBundle\Model\User\UserInterface; |
|
|
|
use Lc\SovBundle\Translation\FlashBagTranslator; |
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
|
|
|
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface; |
|
|
|
use Symfony\Contracts\Cache\CacheInterface; |
|
|
|
use Symfony\Contracts\Cache\ItemInterface; |
|
|
|
use Symfony\Contracts\Cache\TagAwareCacheInterface; |
|
|
|
|
|
|
|
class OrderShopBuilder |
|
|
|
{ |
|
|
@@ -76,6 +71,7 @@ class OrderShopBuilder |
|
|
|
protected MerchantResolver $merchantResolver; |
|
|
|
protected CreditHistoryBuilder $creditHistoryBuilder; |
|
|
|
protected FlashBagTranslator $flashBagTranslator; |
|
|
|
protected OrderShopFactory $orderShopFactory; |
|
|
|
|
|
|
|
public function __construct( |
|
|
|
EntityManagerInterface $entityManager, |
|
|
@@ -96,7 +92,8 @@ class OrderShopBuilder |
|
|
|
DistributionBuilder $distributionBuilder, |
|
|
|
MerchantResolver $merchantResolver, |
|
|
|
CreditHistoryBuilder $creditHistoryBuilder, |
|
|
|
FlashBagTranslator $flashBagTranslator |
|
|
|
FlashBagTranslator $flashBagTranslator, |
|
|
|
OrderShopFactory $orderShopFactory |
|
|
|
) { |
|
|
|
$this->entityManager = $entityManager; |
|
|
|
$this->orderShopStore = $orderShopStore; |
|
|
@@ -117,6 +114,7 @@ class OrderShopBuilder |
|
|
|
$this->merchantResolver = $merchantResolver; |
|
|
|
$this->creditHistoryBuilder = $creditHistoryBuilder; |
|
|
|
$this->flashBagTranslator = $flashBagTranslator; |
|
|
|
$this->orderShopFactory = $orderShopFactory; |
|
|
|
} |
|
|
|
|
|
|
|
public function create( |
|
|
@@ -124,8 +122,7 @@ class OrderShopBuilder |
|
|
|
UserInterface $user = null, |
|
|
|
VisitorInterface $visitor = null |
|
|
|
): OrderShopInterface { |
|
|
|
$orderShopFactory = new OrderShopFactory(); |
|
|
|
$orderShop = $orderShopFactory->create($section, $user, $visitor); |
|
|
|
$orderShop = $this->orderShopFactory->create($section, $user, $visitor); |
|
|
|
|
|
|
|
$this->setOrderStatus($orderShop, OrderStatusModel::ALIAS_CART); |
|
|
|
|