[ADD]: base: Moved name_get of res_currency from base_setup/installer.py

bzr revid: rpa@tinyerp.com-20110628095615-hohw60v4qyvqmvtc
This commit is contained in:
Rucha (Open ERP) 2011-06-28 15:26:15 +05:30
parent 4e430425ca
commit 272b8a8c24
1 changed files with 12 additions and 0 deletions

View File

@ -78,6 +78,18 @@ class res_currency(osv.osv):
r['date'] = currency_date
return res
def name_get(self, cr, uid, ids, context=None):
if context is None:
context = {}
# We can use the following line,if we want to restrict this name_get for company setup only
# But, its better to show currencies as name(Code).
if not len(ids):
return []
if isinstance(ids, (int, long)):
ids = [ids]
reads = self.read(cr, uid, ids, ['name','symbol'], context, load='_classic_write')
return [(x['id'], tools.ustr(x['name']) + (x['symbol'] and (' (' + tools.ustr(x['symbol']) + ')') or '')) for x in reads]
def round(self, cr, uid, currency, amount):
if currency.rounding == 0:
return 0.0