diff --git a/InvenTree/templates/js/translated/bom.js b/InvenTree/templates/js/translated/bom.js index 4bd0504709..eb5da71bb7 100644 --- a/InvenTree/templates/js/translated/bom.js +++ b/InvenTree/templates/js/translated/bom.js @@ -957,10 +957,10 @@ function loadBomTable(table, options={}) { } }); - var total = `${top_total}`; + var total = `${formatDecimal(top_total)}`; if (top_total != all_total) { - total += ` / ${all_total}`; + total += ` / ${formatDecimal(all_total)}`; } return total;