[FIX] gamification: change scope of goal_obj variable

bzr revid: mat@openerp.com-20140418090520-zq4r6s4g9qn78mvx
This commit is contained in:
Martin Trigaux 2014-04-18 11:05:20 +02:00
parent efbf7632b8
commit 6f4efd45bb
1 changed files with 1 additions and 1 deletions

View File

@ -376,6 +376,7 @@ class gamification_challenge(osv.Model):
can be called after each change in the list of users or lines.
: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)
@ -390,7 +391,6 @@ class gamification_challenge(osv.Model):
# FIXME: allow to restrict to a subset of users
for user in challenge.user_ids:
goal_obj = self.pool.get('gamification.goal')
domain = [('line_id', '=', line.id), ('user_id', '=', user.id)]
if start_date:
domain.append(('start_date', '=', start_date))