2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Filter parts by 'is_assembly'

Also greatly improve rendering of the Part table
This commit is contained in:
Oliver Walters
2020-04-11 22:57:40 +10:00
parent e1c6ad7761
commit 0f90e8f522
3 changed files with 15 additions and 5 deletions

View File

@ -80,7 +80,11 @@ function getAvailableTableFilters(tableKey) {
low_stock: {
type: 'bool',
title: '{% trans "Low stock" %}',
}
},
assembly: {
type: 'bool',
title: '{% trans "Assembly" %}',
},
};
}