From 9f2f1b420f1886de4518895773c45aee959a3ef2 Mon Sep 17 00:00:00 2001 From: sbejaoui Date: Tue, 23 Jul 2019 15:33:01 +0200 Subject: [PATCH] [FIX] - missing method param --- report_substitute/models/ir_actions_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report_substitute/models/ir_actions_report.py b/report_substitute/models/ir_actions_report.py index 32c31812..3cf091d1 100644 --- a/report_substitute/models/ir_actions_report.py +++ b/report_substitute/models/ir_actions_report.py @@ -36,5 +36,5 @@ class IrActionReport(models.Model): self.model, res_ids ) if substitution_report: - return substitution_report.render(res_ids) + return substitution_report.render(res_ids, data) return super().render(res_ids, data)