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.

20 lines
648 B

9 years ago
9 years ago
9 years ago
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
  6. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.
  7. # (<http://www.serpentcs.com>).
  8. #
  9. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  10. #
  11. ##############################################################################
  12. from openerp import models, fields
  13. class Users(models.Model):
  14. _name = 'res.users'
  15. _inherit = 'res.users'
  16. signature_image = fields.Binary(string='Signature')