mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Migrated digital sign and one2many kanban Added Lib for digital sign module. Fixed the issue of xpath ref #45.
12 lines
335 B
Python
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: |