Parcourir la source

OrderUtils : isOrderProductAvailable

feature/export_comptable
Guillaume il y a 4 ans
Parent
révision
5b5a0d991d
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. +5
    -0
      ShopBundle/Services/Order/OrderUtils.php

+ 5
- 0
ShopBundle/Services/Order/OrderUtils.php Voir le fichier

@@ -540,6 +540,11 @@ class OrderUtils
return false ;
}

public function isOrderProductAvailable(OrderProductInterface $orderProduct)
{
return $this->isProductAvailable($orderProduct->getProduct(), $orderProduct->getQuantityOrder()) ;
}

public function isOrderProductAvailableAddCart(OrderProductInterface $orderProduct, $orderShop = null)
{
$product = $orderProduct->getProduct() ;

Chargement…
Annuler
Enregistrer