mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[FIX] report_context: render was changed by _render
This commit is contained in:
@@ -29,8 +29,8 @@ class IrActionsReport(models.Model):
|
||||
context.update(self.env.context)
|
||||
return context
|
||||
|
||||
def render(self, res_ids, data=None):
|
||||
return super(IrActionsReport, self.with_context(self._get_context())).render(
|
||||
def _render(self, res_ids, data=None):
|
||||
return super(IrActionsReport, self.with_context(self._get_context()))._render(
|
||||
res_ids, data=data
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user