소스 검색

Correctif PriceUtils

master
Guillaume 4 년 전
부모
커밋
d4742712b2
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      ShopBundle/Services/PriceUtils.php

+ 4
- 4
ShopBundle/Services/PriceUtils.php 파일 보기

@@ -217,14 +217,14 @@ class PriceUtils

if(isset($reductionCatalogValue) && isset($reductionCatalogUnit) && isset($reductionCatalogBehaviorTaxRate)) {
if ($reductionCatalogUnit == 'percent') {
return $this->applyReductionPercent(
$priceWithTax = $this->applyReductionPercent(
$priceWithTax,
$reductionCatalogValue
);
}
elseif ($reductionCatalogUnit == 'amount') {
if($reductionCatalogBehaviorTaxRate == 'tax-excluded') {
return $this->applyTax(
$priceWithTax = $this->applyTax(
$this->applyReductionAmount(
$price,
$reductionCatalogValue
@@ -233,7 +233,7 @@ class PriceUtils
);
}
elseif($reductionCatalogBehaviorTaxRate == 'tax-included') {
return $this->applyReductionAmount(
$priceWithTax = $this->applyReductionAmount(
$priceWithTax,
$reductionCatalogValue
);
@@ -241,7 +241,7 @@ class PriceUtils
}
}

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

public function applyTax($price, $taxRateValue)

Loading…
취소
저장