mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
Only display "outstanding" sales order allocations in table
This commit is contained in:
@ -2353,6 +2353,10 @@ function loadStockAllocationTable(table, options={}) {
|
||||
query_params.customer_detail = true;
|
||||
query_params.order_detail = true;
|
||||
|
||||
// Note: SalesOrderAllocations do not get deleted,
|
||||
// so we must filter by "outstanding" status
|
||||
query_params.outstanding = true;
|
||||
|
||||
delete query_params.build_detail;
|
||||
|
||||
// Load sales order allocation data
|
||||
|
Reference in New Issue
Block a user