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

Add option to disable stock item grouping

This commit is contained in:
Oliver Walters
2021-02-19 11:31:38 +11:00
parent e8bacbe45f
commit 098b494047
3 changed files with 19 additions and 8 deletions

View File

@ -242,6 +242,13 @@ class InvenTreeSetting(models.Model):
'validator': bool,
},
'STOCK_GROUP_BY_PART': {
'name': _('Group by Part'),
'description': _('Group stock items by part reference in table views'),
'default': True,
'validator': bool,
},
'BUILDORDER_REFERENCE_PREFIX': {
'name': _('Build Order Reference Prefix'),
'description': _('Prefix value for build order reference'),