[IMP] base_calendar: rename 'organizer' to solve 'Calendar' import issue

bzr revid: cha@tinyerp.com-20130311133624-jhmdy3rde2ou3dub
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-11 19:06:24 +05:30
parent e42ef6cd0c
commit de873d195d
1 changed files with 1 additions and 1 deletions

View File

@ -1073,7 +1073,7 @@ rule or repeating pattern of time to exclude from the recurring rule."),
'recurrent_id_date': fields.datetime('Recurrent ID date'),
'vtimezone': fields.selection(_tz_get, size=64, string='Timezone'),
'user_id': fields.many2one('res.users', 'Responsible', states={'done': [('readonly', True)]}),
'organizer': fields.char("Organizer", size=256, states={'done': [('readonly', True)]}), # Map with organizer attribute of VEvent.
'organizer': fields.char("Organizer's Email", size=256, states={'done': [('readonly', True)]}), # Map with organizer attribute of VEvent.
'organizer_id': fields.many2one('res.users', 'Organizer', states={'done': [('readonly', True)]}),
'end_type' : fields.selection([('count', 'Number of repetitions'), ('end_date','End date')], 'Recurrence Termination'),
'interval': fields.integer('Repeat Every', help="Repeat every (Days/Week/Month/Year)"),