[IMP] account : Improved the tooltip of name field in account/account_bank_statement.py

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

bzr revid: bde@tinyerp.com-20111206060629-9khlfdsyf633k0zi
This commit is contained in:
Bharat (OpenERP) 2011-12-06 11:36:29 +05:30
parent 20c2ebf9cc
commit 7f5e51775f
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class account_bank_statement(osv.osv):
_name = "account.bank.statement"
_description = "Bank Statement"
_columns = {
'name': fields.char('Name', size=64, required=True, states={'draft': [('readonly', False)]}, readonly=True, help='if you give the Name other then /, its created Accounting Entries Move will be with same name as statement name. This allows the statement entries to have the same references than the statement itself'), # readonly for account_cash_statement
'name': fields.char('Name', size=64, required=True, states={'draft': [('readonly', False)]}, readonly=True, help='If you enter the Statement name other than /, the Moves created for accounting Entries will be same as statement name. This allows the statement entries to have a reference to the bank statement they appeared on.'), # readonly for account_cash_statement
'date': fields.date('Date', required=True, states={'confirm': [('readonly', True)]}),
'journal_id': fields.many2one('account.journal', 'Journal', required=True,
readonly=True, states={'draft':[('readonly',False)]}),