[FIX] crm: Add the date_closed field

bzr revid: stephane@openerp.com-20100216151711-5k9kaejt2xcyus87
This commit is contained in:
Stephane Wirtel 2010-02-16 16:17:11 +01:00
parent 1c640c22b5
commit 30db0b0f49
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ class crm_meeting(osv.osv):
'phonecall_id':fields.many2one ('crm.phonecall', 'Phonecall'),
'opportunity_id':fields.many2one ('crm.opportunity', 'Opportunity'),
'attendee_ids': fields.many2many('calendar.attendee', 'event_attendee_rel', 'event_id', 'attendee_id', 'Attendees'),
'date_closed': fields.datetime('Closed', readonly=True),
}
crm_meeting()