瀏覽代碼

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

feature/export_comptable
Guillaume 4 年之前
父節點
當前提交
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 = [];

Loading…
取消
儲存