Quellcode durchsuchen

PriceUtils : correctif getPriceByRefUnitWithTaxAndReduction

develop
Guillaume vor 3 Jahren
Ursprung
Commit
061cd00e3e
1 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
  1. +5
    -3
      ShopBundle/Services/Price/ProductPriceUtils.php

+ 5
- 3
ShopBundle/Services/Price/ProductPriceUtils.php Datei anzeigen

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

);*/
}



Laden…
Abbrechen
Speichern