瀏覽代碼

[Administration] Produits : problème saisie prix via TTC (NaN)

feature/rotating_product
Guillaume Bourgeois 4 月之前
父節點
當前提交
3d83421ae7
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      backend/web/js/backend.js

+ 4
- 2
backend/web/js/backend.js 查看文件

@@ -322,7 +322,11 @@ function opendistrib_products_event_price_with_tax() {

function opendistrib_products_event_price() {
taxRateSelected = $('#product-id_tax_rate').find('option:selected').data('tax-rate-value');
if (typeof taxRateSelected == 'undefined') {
taxRateSelected = 0;
}
var priceWithTax = $('#product-price-with-tax').val();
if (priceWithTax) {
$('#product-price').val(getPrice(priceWithTax, taxRateSelected));
// formattage
@@ -391,7 +395,6 @@ function opendistrib_product_prices_event_price_with_tax() {
$('#productprice-price-with-tax').val(getPriceWithTax(price, taxRateValue));
// formattage
$('#productprice-price').val(parseFloat(price).toFixed(5));

opendistrib_product_prices_update_reduction_increase();
}
}
@@ -403,7 +406,6 @@ function opendistrib_product_prices_event_price() {
$('#productprice-price').val(getPrice(priceWithTax, taxRateValue));
// formattage
$('#productprice-price-with-tax').val(parseFloat(priceWithTax).toFixed(2));

opendistrib_product_prices_update_reduction_increase();
}
}

Loading…
取消
儲存