From: Alexis de Lattre Date: Tue, 10 Jul 2012 23:35:03 +0000 (+0200) Subject: Add ability to have %(currency_name)s in the format_layout of res.partner.bank.type X-Git-Tag: 7.0-server~1765^2~25^2~5^2 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=c62b820d51254f11c50b855daea0139cc22e32e2;p=odoo%2Fodoo.git Add ability to have %(currency_name)s in the format_layout of res.partner.bank.type bzr revid: alexis@via.ecp.fr-20120710233503-i2b9g62syvz02gra --- diff --git a/addons/account/account_bank.py b/addons/account/account_bank.py index cbc5a96..ef14612 100644 --- a/addons/account/account_bank.py +++ b/addons/account/account_bank.py @@ -43,6 +43,12 @@ class bank(osv.osv): "Return the name to use when creating a bank journal" return (bank.bank_name or '') + ' ' + bank.acc_number + def _prepare_name_get(self, cr, uid, bank_type_obj, bank_obj, context=None): + """Add ability to have %(currency_name)s in the format_layout of + res.partner.bank.type""" + bank_obj._data[bank_obj.id]['currency_name'] = bank_obj.currency_id and bank_obj.currency_id.name or '' + return super(bank, self)._prepare_name_get(cr, uid, bank_type_obj, bank_obj, context=context) + def post_write(self, cr, uid, ids, context={}): if isinstance(ids, (int, long)): ids = [ids]