Merge pull request #89 from adhoc-dev/9.0-fix-custom-filename

[9.0][FIX] fix custom filename making a browse over a browse
This commit is contained in:
Holger Brunn
2016-12-27 17:08:25 +01:00
committed by GitHub

View File

@@ -17,10 +17,10 @@ class Reports(main.Reports):
context = dict(http.request.context)
context.update(action["context"])
report_xml = http.request.session.model('ir.actions.report.xml')
report_ids = report_xml.search(
reports = report_xml.search(
[('report_name', '=', action['report_name'])],
0, False, False, context)
for report in report_xml.browse(report_ids):
for report in reports:
if not report.download_filename:
continue
objects = http.request.session.model(context['active_model'])\