[REF] event_sale: added comment

bzr revid: qdp-launchpad@openerp.com-20120228115904-1dm8wnhw2dw221ss
This commit is contained in:
Quentin (OpenERP) 2012-02-28 12:59:04 +01:00
parent 78b15c2af4
commit 5806856a7e
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ class sale_order_line(osv.osv):
_inherit = 'sale.order.line'
_columns = {
'event': fields.many2one('event.event', 'Event', help="Choose an event and it will authomaticaly create a registration for this event"),
#those 2 fields are used for dynamic domains and filled by onchange
'event_type_id': fields.related('event_type_id', type='many2one', relation="event.type", string="Event Type"),
'event_ok': fields.related('event_ok', string='event_ok', type='boolean'),
}