ソースを参照

OrderUtils : isOrderProductAvailable

feature/export_comptable
Guillaume 4年前
コミット
5b5a0d991d
1個のファイルの変更5行の追加0行の削除
  1. +5
    -0
      ShopBundle/Services/Order/OrderUtils.php

+ 5
- 0
ShopBundle/Services/Order/OrderUtils.php ファイルの表示

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

読み込み中…
キャンセル
保存