[IMP] Account voucher: Name get of voucher should return amount with two digits

bzr revid: mra@mra-laptop-20100929075836-df6miqdr722w0gs9
This commit is contained in:
ARA(OpenERP) 2010-09-29 13:28:36 +05:30 committed by Mustufa Rangwala
parent 94351657af
commit 72bf1b7909
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class account_voucher(osv.osv):
def name_get(self, cr, uid, ids, context=None):
if not len(ids):
return []
return [(r['id'], (str(r['amount']) or '')) for r in self.read(cr, uid, ids, ['amount'], context, load='_classic_write')]
return [(r['id'], (str("%.2f" % r['amount']) or '')) for r in self.read(cr, uid, ids, ['amount'], context, load='_classic_write')]
def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False):
res = super(account_voucher,self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)