Procházet zdrojové kódy

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

feature/export_comptable
Guillaume před 4 roky
rodič
revize
4f9d03347c
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. +4
    -3
      ShopBundle/Services/Order/OrderUtils.php

+ 4
- 3
ShopBundle/Services/Order/OrderUtils.php Zobrazit soubor

@@ -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)

Načítá se…
Zrušit
Uložit