mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = 'res.users'
|
|
|
|
pms_show_notifications = fields.Boolean('Show Notifications', default=True)
|
|
pms_show_pricelist = fields.Boolean('Show Pricelist', default=True)
|
|
pms_show_availability = fields.Boolean('Show Availability', default=True)
|
|
|
|
def __init__(self, pool, cr):
|
|
""" Override of __init__ to add access rights.
|
|
Access rights are disabled by default, but allowed on some specific
|
|
fields defined in self.SELF_{READ/WRITE}ABLE_FIELDS.
|
|
"""
|
|
super(ResUsers, self).__init__(pool, cr)
|
|
# duplicate list to avoid modifying the original reference
|
|
type(self).SELF_WRITEABLE_FIELDS = list(self.SELF_WRITEABLE_FIELDS)
|
|
type(self).SELF_WRITEABLE_FIELDS.extend([
|
|
'pms_show_notifications',
|
|
'pms_show_pricelist',
|
|
'pms_show_availability',
|
|
])
|
|
# duplicate list to avoid modifying the original reference
|
|
type(self).SELF_READABLE_FIELDS = list(self.SELF_READABLE_FIELDS)
|
|
type(self).SELF_READABLE_FIELDS.extend([
|
|
'pms_show_notifications',
|
|
'pms_show_pricelist',
|
|
'pms_show_availability',
|
|
])
|