[IMP] report_fillpdf, report_xlsx, report_xml: Use content_disposition helper
parent
f2e86228ad
commit
98018a2cf7
|
@ -9,7 +9,7 @@
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
'website': "http://github.com/oca/reporting-engine",
|
'website': "http://github.com/oca/reporting-engine",
|
||||||
'category': 'Reporting',
|
'category': 'Reporting',
|
||||||
'version': '11.0.1.0.0',
|
'version': '11.0.1.0.1',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'external_dependencies': {
|
'external_dependencies': {
|
||||||
'python': [
|
'python': [
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||||
|
|
||||||
from odoo.addons.web.controllers import main as report
|
from odoo.addons.web.controllers import main as report
|
||||||
from odoo.http import route, request
|
from odoo.http import content_disposition, route, request
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ class ReportController(report.ReportController):
|
||||||
('Content-Length', len(xlsx)),
|
('Content-Length', len(xlsx)),
|
||||||
(
|
(
|
||||||
'Content-Disposition',
|
'Content-Disposition',
|
||||||
'attachment; filename=' + report.report_file + '.xlsx'
|
content_disposition(report.report_file + '.xlsx')
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
return request.make_response(xlsx, headers=xlsxhttpheaders)
|
return request.make_response(xlsx, headers=xlsxhttpheaders)
|
||||||
|
|
Loading…
Reference in New Issue