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.

11 lines
270 B

  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from openerp import models, fields, api
  4. class Users(models.Model):
  5. _name = 'res.users'
  6. _inherit = 'res.users'
  7. signature= fields.Binary(string='Signature')