Przeglądaj źródła

Nouveau système PriceUtils

feature/export_comptable
Guillaume 4 lat temu
rodzic
commit
f600707b03
1 zmienionych plików z 7 dodań i 1 usunięć
  1. +7
    -1
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 7
- 1
ShopBundle/Services/Price/OrderShopPriceUtils.php Wyświetl plik

@@ -78,10 +78,16 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface

public function getTotalOrderProductsWithReductions(OrderShopInterface $orderShop)
{
$total = $this->getTotalOrderProducts($orderShop) ;

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

$total -= $totalReductionAmount ;

return $total ;
}



Ładowanie…
Anuluj
Zapisz