소스 검색

PriceUtils : correctif getPriceByRefUnitWithTaxAndReduction

develop
Guillaume 3 년 전
부모
커밋
061cd00e3e
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      ShopBundle/Services/Price/ProductPriceUtils.php

+ 5
- 3
ShopBundle/Services/Price/ProductPriceUtils.php 파일 보기

@@ -67,12 +67,14 @@ class ProductPriceUtils
public function getPriceByRefUnitWithTaxAndReduction(ProductPropertyInterface $product)
{

return $this->applyReductionCatalog(
return ($this->getPriceByRefUnitWithTax($product) * $this->getPriceWithTaxAndReduction($product))
/ $this->getPriceWithTax($product) ;

/*return $this->applyReductionCatalog(
$product,
$this->getPriceByRefUnit($product),
$this->getPriceByRefUnitWithTax($product)
);

);*/
}



Loading…
취소
저장