bzr revid: apa@tinyerp.com-20120430131404-u9jp6pgt3o9tc2e9
This commit is contained in:
Amit Patel (OpenERP) 2012-04-30 18:44:04 +05:30
parent 96c07f7f4d
commit 57a769f38b
1 changed files with 2 additions and 2 deletions

View File

@ -186,8 +186,8 @@ class event_event(osv.osv):
'state': fields.selection([
('draft', 'Unconfirmed'),
('confirm', 'Confirmed'),
('done', 'Done'),
('cancel', 'Cancelled')],
('cancel', 'Cancelled'),
('done', 'Done')],
'State', readonly=True, required=True,
help='If event is created, the state is \'Draft\'.If event is confirmed for the particular dates the state is set to \'Confirmed\'. If the event is over, the state is set to \'Done\'.If event is cancelled the state is set to \'Cancelled\'.'),
'email_registration_id' : fields.many2one('email.template','Registration Confirmation Email', help='This field contains the template of the mail that will be automatically sent each time a registration for this event is confirmed.'),