From 5ebc7b040a119385e9fa4963f3e9c9037bf252dd Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 16 May 2019 22:23:31 +1000 Subject: [PATCH] Show current quantity in stocktake form --- InvenTree/static/script/inventree/stock.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js index b8d674556b..d34ed9beee 100644 --- a/InvenTree/static/script/inventree/stock.js +++ b/InvenTree/static/script/inventree/stock.js @@ -43,6 +43,7 @@ function updateStock(items, options={}) { html += 'Item'; html += 'Location'; html += 'Quantity'; + html += '' + options.action + ''; html += ''; @@ -71,6 +72,9 @@ function updateStock(items, options={}) { } else { html += 'No location set'; } + + html += '' + item.quantity + ''; + html += "