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.
17 lines
501 B
17 lines
501 B
# Copyright 2018 Tecnativa - Jairo Llopis
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo.models import api, Model
|
|
from odoo.tools.safe_eval import const_eval
|
|
|
|
|
|
class IrConfigParameter(Model):
|
|
_inherit = "ir.config_parameter"
|
|
|
|
@api.model
|
|
def get_web_dialog_size_config(self):
|
|
get_param = self.sudo().get_param
|
|
return {
|
|
"default_maximize": const_eval(
|
|
get_param("web_dialog_size.default_maximize", "False"))
|
|
}
|