mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
Add menu item to set stock status for multiple items
This commit is contained in:
@ -682,6 +682,14 @@ function loadStockTable(table, options) {
|
||||
});
|
||||
});
|
||||
|
||||
$("#multi-item-set-status").click(function() {
|
||||
var selections = $("#stock-table").bootstrapTable('getSelections');
|
||||
|
||||
selections.forEach(function(item) {
|
||||
// TODO
|
||||
});
|
||||
});
|
||||
|
||||
$("#multi-item-delete").click(function() {
|
||||
var selections = $("#stock-table").bootstrapTable("getSelections");
|
||||
|
||||
|
Reference in New Issue
Block a user