@@ -58,7 +58,6 @@ class Price | |||
public static function getPriceWithTax($priceWithoutTax, $taxRate, $taxCalculationMethod = Document::TAX_CALCULATION_METHOD_DEFAULT) | |||
{ | |||
$priceWithoutTax = self::round($priceWithoutTax); | |||
$vat = self::getVat($priceWithoutTax, $taxRate, $taxCalculationMethod); | |||
return self::numberTwoDecimals(self::round($priceWithoutTax + $vat)); |