[IMP] usage of float instead of char for goals

bzr revid: mat@openerp.com-20130214092151-5vn2hki2td0lirc6
This commit is contained in:
Martin Trigaux 2013-02-14 10:21:51 +01:00
parent c9464672de
commit 13bef9108d
1 changed files with 4 additions and 9 deletions

View File

@ -33,11 +33,6 @@ class hr_goal_criteria(osv.Model):
_name = 'hr.goal.criteria'
_description = 'Goal criteria'
def get_evaluated_field_value(self, cr, user, ids, vals, context=None):
"""Return the type of the 'evaluated_field' field"""
for item in self.browse(cr, user, ids, context=context):
return item.evaluated_field.ttype
_columns = {
'name': fields.char('Name'),
'description': fields.char('Description'),
@ -59,8 +54,8 @@ class hr_goal(osv.Model):
'user_id' : fields.many2one('res.users', string='User'),
'start_date' : fields.date('Start date'),
'end_date' : fields.date('End date'),
'to_reach' : fields.char('To reach'),
'current' : fields.char('Current'),
'to_reach' : fields.float('To reach'),
'current' : fields.float('Current'),
}
def _compute_default_end_date(self, cr, uid, ids, field_name, arg,
@ -91,7 +86,7 @@ class hr_goal_definition(osv.Model):
_columns = {
'criteria_id' : fields.many2one('hr.goal.criteria',
string='Criteria'),
'default_to_reach' : fields.char('Default value to reach'),
'default_to_reach' : fields.float('Default value to reach'),
}
@ -126,4 +121,4 @@ class hr_goal_preset(osv.Model):
_defaults = {
'period': 'n',
}
}