Merge PR #458 into 14.0

Signed-off-by pedrobaeza
pull/483/head
OCA-git-bot 2021-01-13 12:19:55 +00:00
commit 867fbf5cd4
1 changed files with 1 additions and 4 deletions

View File

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