2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

Filter SalesOrder by status

This commit is contained in:
Oliver Walters
2020-06-05 12:08:47 +10:00
parent 6ebce2b2fd
commit fcd588cb01
3 changed files with 21 additions and 1 deletions

View File

@ -97,6 +97,10 @@ function getAvailableTableFilters(tableKey) {
title: '{% trans "Order status" %}',
options: salesOrderCodes,
},
outstanding: {
type: 'bool',
title: '{% trans "Outstanding" %}',
},
};
}