Sfoglia il codice sorgente

Merge branch 'develop'

master
Guillaume Bourgeois 1 settimana fa
parent
commit
ab1d9e6e4e
1 ha cambiato i file con 8 aggiunte e 11 eliminazioni
  1. +8
    -11
      Solver/Price/OrderShopPriceSolver.php

+ 8
- 11
Solver/Price/OrderShopPriceSolver.php Vedi File

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

Loading…
Annulla
Salva