From 9dc0859c770925f6803a01794bef28c5bff8f621 Mon Sep 17 00:00:00 2001 From: Kersten Jeremy Date: Tue, 11 Mar 2014 17:08:34 +0100 Subject: [PATCH] [FIX] Very expensive copy paste type bzr revid: jke@openerp.com-20140311160834-vm0ixawo7alh3w5p --- addons/calendar/calendar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/calendar/calendar.py b/addons/calendar/calendar.py index 784358dceed..c6ffbf13597 100644 --- a/addons/calendar/calendar.py +++ b/addons/calendar/calendar.py @@ -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)