Преглед изворни кода

PriceUtils : getTotalReductions

feature/export_comptable
Guillaume пре 3 година
родитељ
комит
b1a49f9be7
1 измењених фајлова са 22 додато и 2 уклоњено
  1. +22
    -2
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 22
- 2
ShopBundle/Services/Price/OrderShopPriceUtils.php Прегледај датотеку

@@ -301,14 +301,34 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
return $amountWithTax;
}

public function getTotalReductions()
public function getTotalReductions(OrderShopInterface $orderShop)
{
$total = 0 ;

foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) {
$total += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart) ;
}

foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
$total += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit) ;
}

return $total ;
}

public function getTotalReductionsWithTax()
public function getTotalReductionsWithTax(OrderShopInterface $orderShop)
{
$total = 0 ;

foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) {
$total += $this->getOrderProductsReductionCartAmountWithTax($orderShop, $orderReductionCart) ;
}

foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
$total += $this->getOrderProductsReductionCreditAmountWithTax($orderShop, $orderReductionCredit) ;
}

return $total ;
}
}


Loading…
Откажи
Сачувај