You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.9 KiB
50 lines
1.9 KiB
# Copyright 2009-2018 Noviat.
|
|
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
|
|
|
import json
|
|
|
|
from odoo.http import content_disposition, request, route
|
|
|
|
from odoo.addons.report_xlsx.controllers.main import ReportController
|
|
|
|
|
|
class ReportController(ReportController):
|
|
@route(
|
|
[
|
|
"/report/<converter>/<reportname>",
|
|
"/report/<converter>/<reportname>/<docids>",
|
|
],
|
|
type="http",
|
|
auth="user",
|
|
website=True,
|
|
)
|
|
def report_routes(self, reportname, docids=None, converter=None, **data):
|
|
report = request.env["ir.actions.report"]._get_report_from_name(reportname)
|
|
if converter == "xlsx" and not report:
|
|
|
|
context = dict(request.env.context)
|
|
if docids:
|
|
docids = [int(i) for i in docids.split(",")]
|
|
if data.get("options"):
|
|
data.update(json.loads(data.pop("options")))
|
|
if data.get("context"):
|
|
data["context"] = json.loads(data["context"])
|
|
context.update(data["context"])
|
|
context["report_name"] = reportname
|
|
|
|
xlsx = report.with_context(context)._render_xlsx(docids, data=data)[0]
|
|
report_file = context.get("report_file")
|
|
if not report_file:
|
|
active_model = context.get("active_model", "export")
|
|
report_file = active_model.replace(".", "_")
|
|
xlsxhttpheaders = [
|
|
(
|
|
"Content-Type",
|
|
"application/vnd.openxmlformats-"
|
|
"officedocument.spreadsheetml.sheet",
|
|
),
|
|
("Content-Length", len(xlsx)),
|
|
("Content-Disposition", content_disposition(report_file + ".xlsx")),
|
|
]
|
|
return request.make_response(xlsx, headers=xlsxhttpheaders)
|
|
return super().report_routes(reportname, docids, converter, **data)
|