[FIX] Very expensive copy paste type

bzr revid: jke@openerp.com-20140311160834-vm0ixawo7alh3w5p
This commit is contained in:
Kersten Jeremy 2014-03-11 17:08:34 +01:00
parent f75f09db92
commit 9dc0859c77
1 changed files with 2 additions and 2 deletions

View File

@ -1326,8 +1326,8 @@ class calendar_event(osv.Model):
if not context.get('virtual_id', True):
return super(calendar_event, self).search(cr, uid, new_args, offset=offset, limit=limit, order=order, context=context, count=count)
# offset, limit, order and count must be treated separately as we may need to deal with virtual ids
res = super(calendar_event, self).search(cr, uid, new_args, offset=0, limit=0, order=None, context=context, count=False)
# offset, limit, order and count must be treated separately as we may need to deal with virtual ids
res = super(calendar_event, self).search(cr, uid, new_args, offset=offset, limit=limit, order=order, context=context, count=count)
res = self.get_recurrent_ids(cr, uid, res, args, order=order, context=context)
if count:
return len(res)