瀏覽代碼

TVA : calculs des arrondis

refactoring
Guillaume Bourgeois 4 年之前
父節點
當前提交
b9283163bf
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      common/web/js/utils.js

+ 1
- 1
common/web/js/utils.js 查看文件

@@ -35,7 +35,7 @@ function numberDecimals(num, decimals) {
* @returns {string}
*/
function formatPrice(price) {
return numberTwoDecimals(price).replace('.', ',') + ' €';
return numberDecimals(price, 2).replace('.', ',') + ' €';
}

/**

Loading…
取消
儲存