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.
27 lines
780 B
27 lines
780 B
# -*- coding: utf-8 -*-
|
|
# 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 api, fields, models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_name = 'res.users'
|
|
_inherit = ['res.users', 'mail.thread']
|
|
|
|
signature_image = fields.Binary(
|
|
string='Signature',
|
|
)
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
res = super(ResUsers, self).create(vals)
|
|
res._track_signature(vals, 'signature_image')
|
|
return res
|
|
|
|
@api.multi
|
|
def write(self, vals):
|
|
self._track_signature(vals, 'signature_image')
|
|
return super(ResUsers, self).write(vals)
|