3
0
Fork 0
web_techsystech/web_note/web_note_test/web_note.py

13 lines
319 B
Python

# -*- coding: utf-8 -*-
# © initOS GmbH 2014
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp.osv import orm, fields
class WebNote(orm.Model):
_inherit = 'web.note'
_columns = {
'partner_id':
fields.many2one('res.partner', 'Partner Id', invisible=True),
}