[FIX] gamification: avoid recomputing every goal for every challenge

bzr revid: mat@openerp.com-20140506102942-obopc9j5a2136cxh
This commit is contained in:
Martin Trigaux 2014-05-06 12:29:42 +02:00
parent bde55baaa9
commit ccf4d142b0
1 changed files with 1 additions and 1 deletions

View File

@ -396,9 +396,9 @@ class gamification_challenge(osv.Model):
:param list(int) ids: the list of challenge concerned"""
goal_obj = self.pool.get('gamification.goal')
to_update = []
for challenge in self.browse(cr, uid, ids, context=context):
(start_date, end_date) = start_end_date_for_period(challenge.period)
to_update = []
# if no periodicity, use challenge dates
if not start_date and challenge.start_date: