[FIX] crm: Add the date_closed field
authorStephane Wirtel <stephane@openerp.com>
Tue, 16 Feb 2010 15:17:11 +0000 (16:17 +0100)
committerStephane Wirtel <stephane@openerp.com>
Tue, 16 Feb 2010 15:17:11 +0000 (16:17 +0100)
bzr revid: stephane@openerp.com-20100216151711-5k9kaejt2xcyus87

addons/crm/crm_meeting.py

index 8beb7a2..87fc11a 100644 (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()