|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
-
- namespace Lc\ShopBundle\Price\Services;
-
- use Doctrine\Common\Collections\Collection;
- use Lc\ShopBundle\Context\OrderProductInterface;
- use Lc\ShopBundle\Context\OrderShopInterface;
- use Lc\ShopBundle\Context\ProductFamilyInterface;
- use Lc\ShopBundle\Context\ProductInterface;
- use Lc\ShopBundle\Context\ProductPropertyInterface;
- use Lc\ShopBundle\Context\ReductionCatalogInterface;
-
- class OrderProductPriceUtils
- {
- use PriceUtilsTrait ;
-
- protected $productPriceUtils ;
-
- public function __construct(ProductPriceUtils $productPriceUtils)
- {
- $this->productPriceUtils = $productPriceUtils ;
- }
-
- public function getPrice(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getPriceWithTax(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getPriceWithTaxAndReduction(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getPriceByRefUnit(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getPriceByRefUnitWithTax(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getPriceByRefUnitWithTaxAndReduction(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotal(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithReductionCatalog(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithReductionCart(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithReductions(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithTax(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithTaxAndReductionCatalog(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithTaxAndReductionCart(OrderProductInterface $orderProduct)
- {
-
- }
-
- public function getTotalWithTaxAndReductions(OrderProductInterface $orderProduct)
- {
-
- }
- }
-
|