Selaa lähdekoodia

TVA : correction problème calcul HT / TTC

refactoring
Guillaume Bourgeois 4 vuotta sitten
vanhempi
commit
8c2c53ca09
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php Näytä tiedosto

@@ -53,7 +53,7 @@ class Price

public static function getPriceWithTax($priceWithoutTax, $taxRate)
{
return floatval($priceWithoutTax) * ($taxRate + 1) ;
return self::numberTwoDecimals(floatval($priceWithoutTax) * ($taxRate + 1)) ;
}

public static function numberTwoDecimals($number)

Loading…
Peruuta
Tallenna