From 751eb95ac3899a84fe35a1a9275bd6fac7b7cdfc Mon Sep 17 00:00:00 2001 From: AlexGarS73 Date: Thu, 30 Jul 2026 11:26:11 +0200 Subject: [PATCH] [FIX] base_report_to_printer: Only search active printers. --- base_report_to_printer/models/ir_actions_report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/base_report_to_printer/models/ir_actions_report.py b/base_report_to_printer/models/ir_actions_report.py index f4698405b70..a55162509d9 100644 --- a/base_report_to_printer/models/ir_actions_report.py +++ b/base_report_to_printer/models/ir_actions_report.py @@ -118,6 +118,7 @@ def behaviour(self): ("report_id", "=", self.id), ("user_id", "=", self.env.uid), ("action", "!=", "user_default"), + ("active", "=", True), ], limit=1, )