Used proper case in tooltip

bzr revid: bde@tinyerp.com-20111207111347-udhlw1wzwy6wai5y
This commit is contained in:
Bharat (OpenERP) 2011-12-07 16:43:47 +05:30
parent 7f5e51775f
commit 5f3bb33a4f
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 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
'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
'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)]}),