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

Add default page size for reports

- A4 / Legal / Letter
- Use this for the default page size for InvenTree reports
This commit is contained in:
Oliver Walters
2021-02-06 17:11:20 +11:00
parent 2aa2f08658
commit dbaa0fc300
4 changed files with 23 additions and 11 deletions

View File

@ -174,6 +174,17 @@ class InvenTreeSetting(models.Model):
'validator': bool,
},
'REPORT_DEFAULT_PAGE_SIZE': {
'name': _('Page Size'),
'description': _('Default page size for PDF reports'),
'default': 'A4',
'choices': [
('A4', 'A4'),
('Legal', 'Legal'),
('Letter', 'Letter')
],
},
'REPORT_ENABLE_TEST_REPORT': {
'name': _('Test Reports'),
'description': _('Enable generation of test reports'),