Explorar el Código

OrderUtils : isOrderProductAvailable

feature/export_comptable
Guillaume hace 4 años
padre
commit
5b5a0d991d
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      ShopBundle/Services/Order/OrderUtils.php

+ 5
- 0
ShopBundle/Services/Order/OrderUtils.php Ver fichero

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

Cargando…
Cancelar
Guardar