瀏覽代碼

[Frontend] Produits : déjà dans votre panier

feature/export_comptable
Guillaume 4 年之前
父節點
當前提交
4f9d03347c
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. +4
    -3
      ShopBundle/Services/Order/OrderUtils.php

+ 4
- 3
ShopBundle/Services/Order/OrderUtils.php 查看文件

@@ -338,19 +338,20 @@ class OrderUtils
return false ;
}

public function getOrderProductByProductFamilyInCart($productFamily)
public function getOrderProductsByProductFamilyInCart($productFamily)
{
$arrayOrderProducts = [] ;
$orderShop = $this->getCartCurrent() ;

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

return false ;
return $arrayOrderProducts ;
}

public function groupOrderProductsByProductFamily($orderProducts)

Loading…
取消
儲存