Procházet zdrojové kódy

Processus de commande

feature/export_comptable
Fab před 4 roky
rodič
revize
3d1baf513a
1 změnil soubory, kde provedl 18 přidání a 1 odebrání
  1. +18
    -1
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 18
- 1
ShopBundle/Services/Price/OrderShopPriceUtils.php Zobrazit soubor

@@ -85,15 +85,32 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
$totalReductionAmount += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop,$orderReductionCart);
}

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

$total -= $totalReductionAmount ;

return $total ;
}


public function getTotalWithTaxAndReductions(OrderShopInterface $orderShop)
public function getTotalOrderProductsWithTaxAndReductions(OrderShopInterface $orderShop)
{
$total = $this->getTotalOrderProductsWithTax($orderShop) ;

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

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

$total -= $totalReductionAmount ;

return $total ;
}

public function getOrderProductsReductionCartAmountWithoutTax(OrderShopInterface $order, $orderReductionCart)

Načítá se…
Zrušit
Uložit