Kaynağa Gözat

TVA : calculs des arrondis

refactoring
Guillaume Bourgeois 4 yıl önce
ebeveyn
işleme
b9283163bf
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      common/web/js/utils.js

+ 1
- 1
common/web/js/utils.js Dosyayı Görüntüle

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

/**

Yükleniyor…
İptal
Kaydet