Parcourir la source

Nouveau système PriceUtils

feature/export_comptable
Guillaume il y a 4 ans
Parent
révision
f600707b03
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. +7
    -1
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 7
- 1
ShopBundle/Services/Price/OrderShopPriceUtils.php Voir le fichier

@@ -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 ;
}



Chargement…
Annuler
Enregistrer