[FIX]Temporary fix: Comment of event_date and event_end_date in search in get_user_availability (function not used anywhere)

bzr revid: dle@openerp.com-20121227131201-tclbh397sjl8bhvl
This commit is contained in:
dle@openerp.com 2012-12-27 14:12:01 +01:00
parent 56287213e9
commit 9b1c566e11
1 changed files with 1 additions and 1 deletions

View File

@ -1764,7 +1764,7 @@ class res_users(osv.osv):
res = {}
attendee_obj = self.pool.get('calendar.attendee')
attendee_ids = attendee_obj.search(cr, uid, [
('event_date', '<=', current_datetime), ('event_end_date', '<=', current_datetime),
# ('event_date', '<=', current_datetime), ('event_end_date', '<=', current_datetime),
('state', '=', 'accepted'), ('user_id', 'in', ids)
])