Просмотр исходного кода

[Frontend] Rayons : produits déjà dans le panier

feature/export_comptable
Guillaume 4 лет назад
Родитель
Сommit
f56c73ca92
1 измененных файлов: 15 добавлений и 0 удалений
  1. +15
    -0
      ShopBundle/Services/Order/OrderUtils.php

+ 15
- 0
ShopBundle/Services/Order/OrderUtils.php Просмотреть файл

@@ -338,6 +338,21 @@ class OrderUtils
return false ;
}

public function getOrderProductByProductFamilyInCart($productFamily)
{
$orderShop = $this->getCartCurrent() ;

if($orderShop) {
foreach($orderShop->getOrderProducts() as $orderProduct) {
if($orderProduct->getProduct()->getProductFamily() == $productFamily) {
return $orderProduct ;
}
}
}

return false ;
}

public function groupOrderProductsByProductFamily($orderProducts)
{
$orderProductsByProductFamily = [];

Загрузка…
Отмена
Сохранить