From d4e4a88750270a7a738a83cdaa6767fd41d54e2a Mon Sep 17 00:00:00 2001 From: Juan Ignacio Carreras Date: Thu, 14 Nov 2024 15:58:21 -0300 Subject: [PATCH] [NO-MERGE]base_report_to_printer:adhoc patch --- base_report_to_printer/models/ir_actions_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base_report_to_printer/models/ir_actions_report.py b/base_report_to_printer/models/ir_actions_report.py index 8af514383c5..1edb39e9b99 100644 --- a/base_report_to_printer/models/ir_actions_report.py +++ b/base_report_to_printer/models/ir_actions_report.py @@ -87,6 +87,8 @@ def _get_report_default_print_behaviour(self): def behaviour(self): self.ensure_one() + # Parche adhoc por pr: https://github.com/OCA/report-print-send/pull/367 + self = self.with_context(skip_printer_exception=True) printing_act_obj = self.env["printing.report.xml.action"] result = self._get_user_default_print_behaviour()