Преглед изворни кода

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…
Откажи
Сачувај