Files
web/web_digital_sign/users.py
MeetSCS 03618d3502 Removed v8 modules.
Migrated digital sign and one2many kanban

Added Lib for digital sign module.

Fixed the issue of xpath ref #45.
2017-07-29 12:27:47 +02:00

12 lines
335 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from openerp import models, fields, api
class Users(models.Model):
_name = 'res.users'
_inherit = 'res.users'
signature= fields.Binary(string='Signature')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: