[FIX] calendar: replace end_type = final_date by end_date, the actual right selection

This commit is contained in:
Denis Ledoux 2014-06-02 12:02:11 +02:00
parent eb22d202e4
commit 6ed5b04146
1 changed files with 1 additions and 1 deletions

View File

@ -1273,7 +1273,7 @@ class calendar_event(osv.Model):
if data.get('count'):
data['end_type'] = 'count'
else:
data['end_type'] = 'final_date'
data['end_type'] = 'end_date'
return data
def message_get_subscription_data(self, cr, uid, ids, user_pid=None, context=None):