diff --git a/InvenTree/InvenTree/static/script/inventree/stock.js b/InvenTree/InvenTree/static/script/inventree/stock.js index 612c8b5c88..1495d04cae 100644 --- a/InvenTree/InvenTree/static/script/inventree/stock.js +++ b/InvenTree/InvenTree/static/script/inventree/stock.js @@ -385,6 +385,9 @@ function loadStockTrackingTable(table, options) { cols.push({ field: 'quantity', title: 'Quantity', + formatter: function(value, row, index, field) { + return parseFloat(value); + }, }); cols.push({ diff --git a/InvenTree/stock/templates/stock/item_notes.html b/InvenTree/stock/templates/stock/item_notes.html index a5abd13781..c97830a59c 100644 --- a/InvenTree/stock/templates/stock/item_notes.html +++ b/InvenTree/stock/templates/stock/item_notes.html @@ -35,7 +35,9 @@