소스 검색

[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…
취소
저장