ソースを参照

[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 = [];

読み込み中…
キャンセル
保存