Allow editing of more stockitem options

This commit is contained in:
Oliver Walters 2019-04-25 23:35:48 +10:00
parent 8d5850248e
commit d78841a665
2 changed files with 4 additions and 1 deletions

View File

@ -483,6 +483,7 @@ function loadStockTrackingTable(table, options) {
rememberOrder: true,
queryParams: options.params,
columns: cols,
pagination: true,
url: options.url,
});

View File

@ -64,7 +64,9 @@ class EditStockItemForm(HelperForm):
model = StockItem
fields = [
'supplier_part',
'batch',
'status',
'notes'
'notes',
'URL',
]