Просмотр исходного кода

Processus de commande

feature/export_comptable
Fab 4 лет назад
Родитель
Сommit
7dd94dfc64
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      ShopBundle/Services/Price/OrderShopPriceUtils.php

+ 2
- 2
ShopBundle/Services/Price/OrderShopPriceUtils.php Просмотреть файл

@@ -90,7 +90,7 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
{

foreach ($order->getOrderReductionCarts() as $orderReductionCart) {
if($orderReductionCart->getAppliedTo() == ReductionCart::APPLIED_TO_ORDER_PRODUCTS) {
if($orderReductionCart->getAppliedTo() === ReductionCart::APPLIED_TO_ORDER_PRODUCTS) {
if ($orderReductionCart->getUnit() == 'percent') {

$priceWithTax = $this->applyReductionPercent(
@@ -104,7 +104,7 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
$this->getTotalOrderProducts($order),
$orderReductionCart->getValue()
),
$order->getTaxRateAverage()
$this->getTaxRateAverage($order)
);
} else if ($orderReductionCart->getBehaviorTaxRate() == 'tax-included') {
$priceWithTax =

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