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:
@ -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'),
|
||||
|
Reference in New Issue
Block a user