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

[9.0][FIX] fix custom filename making a browse over a browse
pull/92/head
Holger Brunn 2016-12-27 17:08:25 +01:00 committed by GitHub
commit 7b82c7b64b
1 changed files with 2 additions and 2 deletions

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'])\