You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 line
1.5KB

  1. <?php
  2. namespace Lc\ShopBundle\Price\Services;
  3. use Doctrine\Common\Collections\Collection;
  4. use Lc\ShopBundle\Context\OrderProductInterface;
  5. use Lc\ShopBundle\Context\OrderShopInterface;
  6. use Lc\ShopBundle\Context\ProductFamilyInterface;
  7. use Lc\ShopBundle\Context\ProductInterface;
  8. use Lc\ShopBundle\Context\ProductPropertyInterface;
  9. use Lc\ShopBundle\Context\ReductionCatalogInterface;
  10. class OrderShopPriceUtils
  11. {
  12. use PriceUtilsTrait ;
  13. protected $orderProductPriceUtils ;
  14. public function __construct(OrderProductPriceUtils $orderProductPriceUtils)
  15. {
  16. $this->orderProductPriceUtils = $orderProductPriceUtils ;
  17. }
  18. public function getTotal(OrderShopInterface $orderShop)
  19. {
  20. }
  21. public function getTotalWithReductionCatalog(OrderShopInterface $orderShop)
  22. {
  23. }
  24. public function getTotalWithReductionCart(OrderShopInterface $orderShop)
  25. {
  26. }
  27. public function getTotalWithReductions(OrderShopInterface $orderShop)
  28. {
  29. }
  30. public function getTotalWithTax(OrderShopInterface $orderShop)
  31. {
  32. }
  33. public function getTotalWithTaxAndReductionCatalog(OrderShopInterface $orderShop)
  34. {
  35. }
  36. public function getTotalWithTaxAndReductionCart(OrderShopInterface $orderShop)
  37. {
  38. }
  39. public function getTotalWithTaxAndReductions(OrderShopInterface $orderShop)
  40. {
  41. }
  42. }