浏览代码

Processus de commande

feature/export_comptable
Fab 4 年前
父节点
当前提交
ce62fbebb9
共有 1 个文件被更改,包括 36 次插入0 次删除
  1. +36
    -0
      ShopBundle/Services/Price/PriceUtilsTrait.php

+ 36
- 0
ShopBundle/Services/Price/PriceUtilsTrait.php 查看文件

@@ -3,6 +3,7 @@
namespace Lc\ShopBundle\Price\Services;

use Lc\ShopBundle\Context\OrderProductInterface;
use Lc\ShopBundle\Context\OrderShopInterface;
use Lc\ShopBundle\Context\ProductPropertyInterface;

trait PriceUtilsTrait
@@ -96,4 +97,39 @@ trait PriceUtilsTrait

return $this->round($priceReturn);
}


public function applyReductionCart(OrderShopInterface $order, $withTax = true)
{

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

$priceWithTax = $this->applyReductionPercent(
$this->getTotalOrderProductsWithTax($order),
$orderReductionCart->getValue
);
} else if ($orderReductionCart->getUnit() == 'amount') {
if ($orderReductionCart->getBehaviorTaxRate() == 'tax-excluded') {
$priceWithTax = $this->applyTax(
$this->applyReductionAmount(
$this->getTotalOrderProducts($order),
$orderReductionCart->getValue()
),
$order->getTaxRateInherited()->getValue()
);
if ($orderReductionCart->getBehaviorTaxRate() == 'tax-inlcluded') {
$priceWithTax =
$this->applyReductionAmount(
$this->getTotalOrderProductsWithTax($order),
$orderReductionCart->getValue()
);
}
}
}
}

}


}

正在加载...
取消
保存