[MERGE]: Merged tpa branch for adding remaining days in leave types dropdown

bzr revid: atp@tinyerp.com-20121108033818-qmwoscdse0i6t6oc
This commit is contained in:
Atul Patel (OpenERP) 2012-11-08 09:08:18 +05:30
commit 428f1285d0
1 changed files with 13 additions and 0 deletions

View File

@ -90,6 +90,19 @@ class hr_holidays_status(osv.osv):
'color_name': 'red',
'active': True,
}
def name_get(self, cr, uid, ids, context=None):
if not ids:
return []
datas = self.read(cr, uid, ids, ['name', 'remaining_leaves'], context=context)
res = []
for record in datas:
name = record.get('name')
if record.get('remaining_leaves'):
name = name + ' (' +str(record.get('remaining_leaves')) + ')'
res.append((record['id'], name))
return res
hr_holidays_status()
class hr_holidays(osv.osv):