Procházet zdrojové kódy

[Administration] Génération avoirs : correctif calcul montant (intégrer uniquement les réductions en pourcentage)

develop
Guillaume Bourgeois před 1 týdnem
rodič
revize
34042feb01
1 změnil soubory, kde provedl 8 přidání a 11 odebrání
  1. +8
    -11
      Solver/Price/OrderShopPriceSolver.php

+ 8
- 11
Solver/Price/OrderShopPriceSolver.php Zobrazit soubor

@@ -390,19 +390,16 @@ class OrderShopPriceSolver
return $this->round($total);
}

public function getReductionPercent(OrderShopInterface $orderShop)
public function getOrderProductTotalWithTaxAndReductionGlobal(OrderShopInterface $orderShop, OrderProductInterface $orderProduct)
{
$totalWithTax = $this->getTotalOrderProductsWithTax($orderShop);
$totalReductionWithTax = $totalWithTax - $this->getTotalOrderProductsWithTaxAndReductions($orderShop);
$amount = $this->orderProductPriceResolver->getTotalWithTaxAndReduction($orderProduct, false);

return -(($totalReductionWithTax * 100) / $totalWithTax);
}
foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) {
if($orderReductionCart->getUnit() == 'percent') {
$amount = $this->applyPercent($amount, -$orderReductionCart->getValue());
}
}

public function getOrderProductTotalWithTaxAndReductionGlobal(OrderShopInterface $orderShop, OrderProductInterface $orderProduct)
{
return $this->round($this->applyPercent(
$this->orderProductPriceResolver->getTotalWithTaxAndReduction($orderProduct, false),
$this->getReductionPercent($orderShop)
));
return $this->round($amount);
}
}

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