瀏覽代碼

Merge branch 'dev'

prodstable
Guillaume Bourgeois 2 年之前
父節點
當前提交
363a1595fc
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      common/helpers/Price.php

+ 1
- 1
common/helpers/Price.php 查看文件

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

Loading…
取消
儲存