Skip to content
Snippets Groups Projects
Commit ce5ba45d authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[IMP] gamification: avoid fetching function field while we could reuse the...

[IMP] gamification: avoid fetching function field while we could reuse the cache system of the browse records (avoid memory errors when updating a large number of records)
parent 1ce14dbe
No related branches found
No related tags found
No related merge requests found
......@@ -349,8 +349,8 @@ class gamification_goal(osv.Model):
goal = all_goals[goal_id]
# check goal target reached
if (goal.definition_condition == 'higher' and value.get('current', goal.current) >= goal.target_goal) \
or (goal.definition_condition == 'lower' and value.get('current', goal.current) <= goal.target_goal):
if (goal.definition_id.condition == 'higher' and value.get('current', goal.current) >= goal.target_goal) \
or (goal.definition_id.condition == 'lower' and value.get('current', goal.current) <= goal.target_goal):
value['state'] = 'reached'
# check goal failure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment