Merge PR #458 into 14.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2021-01-13 12:19:55 +00:00

View File

@@ -2,7 +2,6 @@
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
import json import json
import time
from odoo.http import content_disposition, request, route from odoo.http import content_disposition, request, route
from odoo.tools.safe_eval import safe_eval from odoo.tools.safe_eval import safe_eval
@@ -32,9 +31,7 @@ class ReportController(report.ReportController):
report_name = report.report_file report_name = report.report_file
if report.print_report_name and not len(docids) > 1: if report.print_report_name and not len(docids) > 1:
obj = request.env[report.model].browse(docids[0]) obj = request.env[report.model].browse(docids[0])
report_name = safe_eval( report_name = safe_eval(report.print_report_name, {"object": obj})
report.print_report_name, {"object": obj, "time": time}
)
xlsxhttpheaders = [ xlsxhttpheaders = [
( (
"Content-Type", "Content-Type",