Explorar el Código

TVA : calculs des arrondis

refactoring
Guillaume Bourgeois hace 4 años
padre
commit
b9283163bf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      common/web/js/utils.js

+ 1
- 1
common/web/js/utils.js Ver fichero

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

/**

Cargando…
Cancelar
Guardar