[14.0][FIX] base_report_to_printer: Don't use safe_eval as module

This commit is contained in:
Denis Roussel
2021-12-20 10:49:34 +01:00
committed by trisdoan
parent 2614df0c64
commit 57fda28bed

View File

@@ -4,9 +4,10 @@
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
# Copyright (C) 2013-2014 Camptocamp (<http://www.camptocamp.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from time import time
from odoo import _, api, exceptions, fields, models
from odoo.tools.safe_eval import safe_eval, time
from odoo.tools.safe_eval import safe_eval
REPORT_TYPES = {"qweb-pdf": "pdf", "qweb-text": "text"}