[FIX] safe_eval object time

pull/554/head
Saran440 2020-12-04 12:25:59 +07:00 committed by Lois Rilo
parent 73dba2e92a
commit 63beeed36c
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",