Bläddra i källkod

OrderUtils : isOrderProductAvailable

feature/export_comptable
Guillaume 4 år sedan
förälder
incheckning
5b5a0d991d
1 ändrade filer med 5 tillägg och 0 borttagningar
  1. +5
    -0
      ShopBundle/Services/Order/OrderUtils.php

+ 5
- 0
ShopBundle/Services/Order/OrderUtils.php Visa fil

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

Laddar…
Avbryt
Spara