Browse Source

Merge branch 'dev'

prodstable
Guillaume Bourgeois 2 years ago
parent
commit
363a1595fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php View File

$priceWithoutTax = self::round($priceWithoutTax); $priceWithoutTax = self::round($priceWithoutTax);
$vat = self::getVat($priceWithoutTax, $taxRate, $taxCalculationMethod); $vat = self::getVat($priceWithoutTax, $taxRate, $taxCalculationMethod);


return $priceWithoutTax + $vat;
return self::numberTwoDecimals(self::round($priceWithoutTax + $vat));
} }


public static function getVat($priceTotalWithoutTax, $taxRate, $taxCalculationMethod = Document::TAX_CALCULATION_METHOD_DEFAULT) public static function getVat($priceTotalWithoutTax, $taxRate, $taxCalculationMethod = Document::TAX_CALCULATION_METHOD_DEFAULT)

Loading…
Cancel
Save