[FIX] remove an useless computation in gamification.py and improves the text of the stat button displayed in challenges form view (addon gamification)

bzr revid: ged@openerp.com-20140414134332-h4gn61fu1ly9tbye
This commit is contained in:
Gery Debongnie 2014-04-14 15:43:32 +02:00
parent 0a3987b6c9
commit 9950bb8f74
2 changed files with 1 additions and 12 deletions

View File

@ -114,15 +114,6 @@ class gamification_challenge(osv.Model):
return self.pool.get('ir.model.data').get_object_reference(cr, uid, 'gamification', 'simple_report_template')[1]
except ValueError:
return False
def _count_goals(self, cr, uid, ids, field_name, arg, context=None):
res = {}
try:
for goals in self.browse(cr, uid, ids, context=context):
res[goals.id] = len(goals.goals_ids)
except:
pass
return res
_order = 'end_date, start_date, name, id'
_columns = {
@ -200,8 +191,6 @@ class gamification_challenge(osv.Model):
'category': fields.selection(lambda s, *a, **k: s._get_categories(*a, **k),
string="Appears in", help="Define the visibility of the challenge through menus", required=True),
'goals_ids': fields.one2many('gamification.goal', 'challenge_id', 'Related Goals'),
'goals_count': fields.function(_count_goals, type='integer', string='Related Goals')
}
_defaults = {

View File

@ -58,7 +58,7 @@
class="oe_stat_button"
icon="fa-gift"
attrs="{'invisible': [('state','=','draft')]}">
<field name="goals_count" widget="statinfo" string="Goals" help="Related Goals"/>
<div>Related<br/>Goals</div>
</button>
</div>
<group>