Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

4 роки тому
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. }