Bladeren bron

TVA : correction problème calcul HT / TTC

refactoring
Guillaume Bourgeois 4 jaren geleden
bovenliggende
commit
8c2c53ca09
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php Bestand weergeven

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

Laden…
Annuleren
Opslaan