2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

Merge pull request #1787 from SchrodingersGat/bom-table-additions

Add sub_part_assembly filter to BOM table
This commit is contained in:
Oliver
2021-07-09 13:39:09 +10:00
committed by GitHub
3 changed files with 48 additions and 66 deletions

View File

@ -242,7 +242,7 @@ function loadBomTable(table, options) {
return renderLink(text, url);
}
});
cols.push(
{
field: 'purchase_price_range',

View File

@ -42,6 +42,10 @@ function getAvailableTableFilters(tableKey) {
type: 'bool',
title: '{% trans "Trackable Part" %}'
},
sub_part_assembly: {
type: 'bool',
title: '{% trans "Assembled Part" %}',
},
validated: {
type: 'bool',
title: '{% trans "Validated" %}',