Parcourir la source

Prix TTC : 2 chiffres après la vrigule

refactoring
Guillaume Bourgeois il y a 2 ans
Parent
révision
827443e297
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php Voir le fichier

@@ -61,7 +61,7 @@ class Price
$priceWithoutTax = self::round($priceWithoutTax);
$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)

Chargement…
Annuler
Enregistrer