diff --git a/InvenTree/InvenTree/static/script/inventree/stock.js b/InvenTree/InvenTree/static/script/inventree/stock.js index e4fa188598..ae07be1dd3 100644 --- a/InvenTree/InvenTree/static/script/inventree/stock.js +++ b/InvenTree/InvenTree/static/script/inventree/stock.js @@ -76,12 +76,14 @@ function loadStockTable(table, options) { } else if (field == 'quantity') { var stock = 0; + var items = 0; data.forEach(function(item) { stock += item.quantity; + items += 1; }); - return stock; + return stock + " (" + items + " items)"; } else if (field == 'batch') { var batches = []; diff --git a/InvenTree/part/templates/part/stock.html b/InvenTree/part/templates/part/stock.html index a41d5fd32a..6050137b69 100644 --- a/InvenTree/part/templates/part/stock.html +++ b/InvenTree/part/templates/part/stock.html @@ -47,6 +47,21 @@ url: "{% url 'api-stock-list' %}", }); + $("#stock-export").click(function() { + launchModalForm("{% url 'stock-export-options' %}", { + submit_text: "Export", + success: function(response) { + var url = "{% url 'stock-export' %}"; + + url += "?format=" + response.format; + url += "&cascade=" + response.cascade; + url += "&part={{ part.id }}"; + + location.href = url; + }, + }); + }); + $('#item-create').click(function () { launchModalForm("{% url 'stock-item-create' %}", { reload: true,