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 OrderShopPriceUtils
- {
- use PriceUtilsTrait ;
-
- protected $orderProductPriceUtils ;
-
- public function __construct(OrderProductPriceUtils $orderProductPriceUtils)
- {
- $this->orderProductPriceUtils = $orderProductPriceUtils ;
- }
-
- public function getTotal(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithReductionCatalog(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithReductionCart(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithReductions(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithTax(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithTaxAndReductionCatalog(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithTaxAndReductionCart(OrderShopInterface $orderShop)
- {
-
- }
-
- public function getTotalWithTaxAndReductions(OrderShopInterface $orderShop)
- {
-
- }
- }
|