2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-06 23:38:48 +00:00

Add ability to filter parts by "purchasable" status

This commit is contained in:
Oliver Walters 2020-04-20 22:40:52 +10:00
parent 9e4d09343c
commit 34d3dca8b7

View File

@ -97,6 +97,10 @@ function getAvailableTableFilters(tableKey) {
type: 'bool', type: 'bool',
title: '{% trans "Salable" %}', title: '{% trans "Salable" %}',
}, },
purchaseable: {
type: 'bool',
title: '{% trans "Purchasable" %}',
},
}; };
} }