[ADD] reporting-context

This commit is contained in:
Jaime Arroyo
2019-02-18 11:28:09 +01:00
committed by Pierrick Brun
parent 9f6c1c20e3
commit fb0efed1b8
16 changed files with 701 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Copyright 2019 Creu Blanca
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo.addons.web.controllers import main as report
from odoo.http import route, request
import json
class ReportController(report.ReportController):
@route()
def report_routes(self, reportname, docids=None, converter=None, **data):
report = request.env['ir.actions.report']._get_report_from_name(
reportname)
original_context = json.loads(data.get('context', '{}'))
data['context'] = json.dumps(report.with_context(
original_context
)._get_context())
return super().report_routes(
reportname, docids=docids, converter=converter, **data)