[IMP]: account: l10n fullness and inheritancy: Improved label and added help text on visible field

bzr revid: ron@tinyerp.com-20110729102548-iam282c6f3dkv5st
This commit is contained in:
ron@tinyerp.com 2011-07-29 15:55:48 +05:30
parent 85c377915c
commit 69928207cc
1 changed files with 1 additions and 1 deletions

View File

@ -2476,7 +2476,7 @@ class account_chart_template(osv.osv):
_columns={
'name': fields.char('Name', size=64, required=True),
'parent_id': fields.many2one('account.chart.template', 'Parent Chart Template'),
'visible': fields.boolean('Can be Visible'),
'visible': fields.boolean('Can be Visible?', help="Set this to False if you don't want this template to be used actively in the wizard that generate Chart of Accounts from templates, this is useful when you want to generate accounts of this template only when loading its child template."),
'account_root_id': fields.many2one('account.account.template', 'Root Account', domain=[('parent_id','=',False)]),
'tax_code_root_id': fields.many2one('account.tax.code.template', 'Root Tax Code', domain=[('parent_id','=',False)]),
'tax_template_ids': fields.one2many('account.tax.template', 'chart_template_id', 'Tax Template List', help='List of all the taxes that have to be installed by the wizard'),