Guillaume Bourgeois 1 неделю назад
Родитель
Сommit
ab1d9e6e4e
1 измененных файлов: 8 добавлений и 11 удалений
  1. +8
    -11
      Solver/Price/OrderShopPriceSolver.php

+ 8
- 11
Solver/Price/OrderShopPriceSolver.php Просмотреть файл

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

Загрузка…
Отмена
Сохранить