[FIX] l10n_multilang: account.account.name needs to be translatable, courtesy of Nicolas Bessi (Camptocamp)

The translatable flag in account.account.name was
lost during a failed merge operation, so it needs
to be restored.

bzr revid: odo@openerp.com-20120117161935-vdfz38w97undmvi2
This commit is contained in:
Olivier Dony 2012-01-17 17:19:35 +01:00
parent 68c97bd36b
commit 387c476a1d
1 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,13 @@ class account_account_template(osv.osv):
}
account_account_template()
class account_account(osv.osv):
_inherit = 'account.account'
_columns = {
'name': fields.char('Name', size=128, required=True, select=True, translate=True),
}
account_account()
class account_tax(osv.osv):
_inherit = 'account.tax'
_columns = {