Browse Source

[FIX] - missing method param

pull/307/head
sbejaoui 5 years ago
parent
commit
9f2f1b420f
  1. 2
      report_substitute/models/ir_actions_report.py

2
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)
Loading…
Cancel
Save