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.

19 lines
622 B

  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. # About License, see __openerp__.py
  10. #
  11. ##############################################################################
  12. from openerp import models, fields, api
  13. class Users(models.Model):
  14. _name = 'res.users'
  15. _inherit = 'res.users'
  16. signature_image= fields.Binary(string='Signature')