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.
|
- <?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)
- {
-
- }
- }
|