浏览代码

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)

正在加载...
取消
保存