[FIX] account_voucher : Usability improvement

lp bug: https://launchpad.net/bugs/926041 fixed

bzr revid: amp@tinyerp.com-20120328123634-c42tqj487otbh43o
This commit is contained in:
Amit (OpenERP) 2012-03-28 18:06:34 +05:30
parent b7f2284d7f
commit 488e7a8817
1 changed files with 2 additions and 2 deletions

View File

@ -32,11 +32,11 @@ class res_company(osv.osv):
_columns = {
'income_currency_exchange_account_id': fields.many2one(
'account.account',
string="Income Currency Rate",
string="Gain Exchange Rate Account",
domain="[('type', '=', 'other')]",),
'expense_currency_exchange_account_id': fields.many2one(
'account.account',
string="Expense Currency Rate",
string="Loss Exchange Rate Account",
domain="[('type', '=', 'other')]",),
}