ソースを参照

TVA : correction problème calcul HT / TTC

refactoring
コミット
8c2c53ca09
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php ファイルの表示

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

読み込み中…
キャンセル
保存