[IMP] account : improved tooltip for name field

bzr revid: bde@tinyerp.com-20111209084746-edk590266su24b8o
This commit is contained in:
Bharat (OpenERP) 2011-12-09 14:17:46 +05:30
parent 5f3bb33a4f
commit 5357d747e6
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 enter 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
'name': fields.char('Name', size=64, required=True, states={'draft': [('readonly', False)]}, readonly=True, help='If you enter a statement name other than /, its created accounting entries move name will be the statement name appended with /1, /2, /3, etc. This allows 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)]}),