mirror of https://github.com/OCA/social.git
29 lines
759 B
Python
29 lines
759 B
Python
# Copyright 2004-2010 OpenERP SA (<http://www.openerp.com>)
|
|
# Copyright 2011-2015 Serpent Consulting Services Pvt. Ltd.
|
|
# Copyright 2017 Tecnativa - Vicent Cubells
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = "res.users"
|
|
|
|
digital_signature = fields.Image(
|
|
copy=False,
|
|
max_width=1024,
|
|
max_height=1024,
|
|
)
|
|
|
|
def clear_digital_signature(self):
|
|
self.digital_signature = False
|
|
|
|
@property
|
|
def SELF_READABLE_FIELDS(self):
|
|
return super().SELF_READABLE_FIELDS + ["digital_signature"]
|
|
|
|
@property
|
|
def SELF_WRITEABLE_FIELDS(self):
|
|
return super().SELF_WRITEABLE_FIELDS + ["digital_signature"]
|