Parcourir la source

PriceUtils : correctif getPriceByRefUnitWithTaxAndReduction

develop
Guillaume il y a 3 ans
Parent
révision
061cd00e3e
1 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. +5
    -3
      ShopBundle/Services/Price/ProductPriceUtils.php

+ 5
- 3
ShopBundle/Services/Price/ProductPriceUtils.php Voir le fichier

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

);*/
}



Chargement…
Annuler
Enregistrer