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

Adds (per user) setting to show or hide scheduling tab

This commit is contained in:
Oliver
2022-03-01 23:26:08 +11:00
parent f33f1a339d
commit e44159baea
4 changed files with 16 additions and 2 deletions

View File

@ -1253,7 +1253,14 @@ class InvenTreeUserSetting(BaseInvenTreeSetting):
('MM/DD/YYYY', '02/22/2022'),
('MMM DD YYYY', 'Feb 22 2022'),
]
}
},
'DISPLAY_SCHEDULE_TAB': {
'name': _('Part Scheduling'),
'description': _('Display part scheduling information'),
'default': True,
'validator': bool,
},
}
class Meta: