diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js index e117ef0240..ac7d151413 100644 --- a/InvenTree/static/script/inventree/stock.js +++ b/InvenTree/static/script/inventree/stock.js @@ -483,6 +483,7 @@ function loadStockTrackingTable(table, options) { rememberOrder: true, queryParams: options.params, columns: cols, + pagination: true, url: options.url, }); diff --git a/InvenTree/stock/forms.py b/InvenTree/stock/forms.py index f6f9032aab..19dd5b2986 100644 --- a/InvenTree/stock/forms.py +++ b/InvenTree/stock/forms.py @@ -64,7 +64,9 @@ class EditStockItemForm(HelperForm): model = StockItem fields = [ + 'supplier_part', 'batch', 'status', - 'notes' + 'notes', + 'URL', ]