From cb33705e44fd878fbda07aebab961708200e42f0 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 18 Oct 2023 14:27:07 +1100 Subject: [PATCH] Adds 'A3' as report size option (#5733) --- InvenTree/report/helpers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/report/helpers.py b/InvenTree/report/helpers.py index 58c0952082..9e30b7a259 100644 --- a/InvenTree/report/helpers.py +++ b/InvenTree/report/helpers.py @@ -11,6 +11,7 @@ def report_page_size_options(): """Returns a list of page size options for PDF reports.""" return [ ('A4', _('A4')), + ('A3', _('A3')), ('Legal', _('Legal')), ('Letter', _('Letter')), ]