|
|
@@ -69,7 +69,6 @@ class OrderUtils |
|
|
|
|
|
|
|
public function createOrderShop($params) |
|
|
|
{ |
|
|
|
|
|
|
|
//TODO vérifier que l'utilisateur n'a pas déjà une commande en cours |
|
|
|
$orderShop = new OrderShop(); |
|
|
|
|
|
|
@@ -78,7 +77,7 @@ class OrderUtils |
|
|
|
$orderShopBelongTo = true; |
|
|
|
$orderShop->setUser($params['user']); |
|
|
|
} |
|
|
|
if (isset($params['visitor']) && $params['visitor']) { |
|
|
|
if (isset($params['visitor']) && $params['visitor'] && !$orderShop->getUser()) { |
|
|
|
$orderShopBelongTo = true; |
|
|
|
$orderShop->setVisitor($params['visitor']); |
|
|
|
} |
|
|
@@ -296,7 +295,17 @@ class OrderUtils |
|
|
|
if ($orderShop1 && $orderShop2) { |
|
|
|
|
|
|
|
foreach ($orderShop2->getOrderProducts() as $orderProduct) { |
|
|
|
$this->addOrderProduct($orderShop1, $orderProduct); |
|
|
|
|
|
|
|
$orderProductAlreadyInCart = $this->hasOrderProductAlreadyInCart($orderShop1, $orderProduct) ; |
|
|
|
if($orderProductAlreadyInCart) { |
|
|
|
if($orderProduct->getQuantityOrder() > $orderProductAlreadyInCart->getQuantityOrder()) { |
|
|
|
$orderShop1->removeOrderProduct($orderProductAlreadyInCart) ; |
|
|
|
$this->addOrderProduct($orderShop1, $orderProduct); |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
$this->addOrderProduct($orderShop1, $orderProduct); |
|
|
|
} |
|
|
|
|
|
|
|
if($persist) { |
|
|
|
$this->em->remove($orderProduct); |
|
|
@@ -314,6 +323,17 @@ class OrderUtils |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function hasOrderProductAlreadyInCart($orderShop, $orderProductTest) |
|
|
|
{ |
|
|
|
foreach($orderShop->getOrderProducts() as $orderProduct) { |
|
|
|
if($orderProduct->getProduct() == $orderProductTest->getProduct()) { |
|
|
|
return $orderProduct ; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return false ; |
|
|
|
} |
|
|
|
|
|
|
|
public function groupOrderProductsByProductFamily($orderProducts) |
|
|
|
{ |
|
|
|
$orderProductsByProductFamily = []; |