Sfoglia il codice sorgente

TVA : calculs des arrondis

refactoring
parent
commit
b9283163bf
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      common/web/js/utils.js

+ 1
- 1
common/web/js/utils.js Vedi File

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

/**

Loading…
Annulla
Salva