Browse Source

Prix

feature/export_comptable
Guillaume 4 years ago
parent
commit
b4b6376eb9
1 changed files with 9 additions and 3 deletions
  1. +9
    -3
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 9
- 3
ShopBundle/Services/Price/OrderShopPriceUtils.php View File



public function getTotalOrderProductsTaxes(OrderShopInterface $orderShop):float public function getTotalOrderProductsTaxes(OrderShopInterface $orderShop):float
{ {
return 0 ;
$total = 0 ;

foreach($orderShop->getOrderProducts() as $orderProduct) {
$total += $this->orderProductPriceUtils->getTotalTaxes($orderProduct) / $this->getReductionsCoef($orderShop) ;
}

return $total ;
} }


public function getOrderProductsTaxesAsArray(OrderShopInterface $orderShop):array public function getOrderProductsTaxesAsArray(OrderShopInterface $orderShop):array
]; ];
} }


$orderProductsTaxes[$idTaxRate]['totalOrderProducts'] += $this->orderProductPriceUtils->getTotalWithReduction($orderProduct) * $this->getReductionsCoef($orderShop);
$orderProductsTaxes[$idTaxRate]['totalTaxes'] += $this->orderProductPriceUtils->getTotalTaxes($orderProduct) * $this->getReductionsCoef($orderShop) ;
$orderProductsTaxes[$idTaxRate]['totalOrderProducts'] += $this->orderProductPriceUtils->getTotalWithReduction($orderProduct) / $this->getReductionsCoef($orderShop);
$orderProductsTaxes[$idTaxRate]['totalTaxes'] += $this->orderProductPriceUtils->getTotalTaxes($orderProduct) / $this->getReductionsCoef($orderShop) ;
} }


return $orderProductsTaxes ; return $orderProductsTaxes ;

Loading…
Cancel
Save