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.
53 lines
1.9 KiB
53 lines
1.9 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2013-2014 GRAP (http://www.grap.coop)
|
|
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from openerp import api, fields, models
|
|
|
|
|
|
class BaseConfigSettings(models.TransientModel):
|
|
_inherit = 'base.config.settings'
|
|
|
|
# Getter / Setter Section
|
|
@api.model
|
|
def get_default_auth_admin_passkey_send_to_admin(self, fields):
|
|
return {
|
|
'auth_admin_passkey_send_to_admin':
|
|
self.env["ir.config_parameter"].get_param(
|
|
"auth_admin_passkey.send_to_admin")
|
|
}
|
|
|
|
@api.multi
|
|
def set_auth_admin_passkey_send_to_admin(self):
|
|
for config in self:
|
|
self.env['ir.config_parameter'].set_param(
|
|
"auth_admin_passkey.send_to_admin",
|
|
config.auth_admin_passkey_send_to_admin or '')
|
|
|
|
@api.model
|
|
def get_default_auth_admin_passkey_send_to_user(self, fields):
|
|
return {
|
|
'auth_admin_passkey_send_to_user':
|
|
self.env["ir.config_parameter"].get_param(
|
|
"auth_admin_passkey.send_to_user")
|
|
}
|
|
|
|
@api.multi
|
|
def set_auth_admin_passkey_send_to_user(self):
|
|
for config in self:
|
|
self.env['ir.config_parameter'].set_param(
|
|
"auth_admin_passkey.send_to_user",
|
|
config.auth_admin_passkey_send_to_user or '')
|
|
|
|
auth_admin_passkey_send_to_admin = fields.Boolean(
|
|
string='Send email to admin user.',
|
|
help="""When the administrator use his password to login in """
|
|
"""with a different account, Odoo will send an email """
|
|
"""to the admin user.""")
|
|
|
|
auth_admin_passkey_send_to_user = fields.Boolean(
|
|
string='Send email to user.',
|
|
help="""When the administrator use his password to login in """
|
|
"""with a different account, Odoo will send an email """
|
|
"""to the account user.""")
|