[IMP] account: (usability) changed state of confirmed cash statement from Confirmed to Closed

bzr revid: qdp-launchpad@tinyerp.com-20100913123453-72oas3dzrv5eyo62
This commit is contained in:
qdp-launchpad@tinyerp.com 2010-09-13 14:34:53 +02:00
parent ea1431dfa2
commit ce3e65f4e5
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ class account_cash_statement(osv.osv):
'balance_end_real': fields.float('Closing Balance', digits_compute=dp.get_precision('Account'), states={'confirm':[('readonly', True)]}, help="closing balance entered by the cashbox verifier"),
'state': fields.selection(
[('draft', 'Draft'),
('confirm', 'Confirmed'),
('confirm', 'Closed'),
('open','Open')], 'State', required=True, states={'confirm': [('readonly', True)]}, readonly="1"),
'total_entry_encoding':fields.function(_get_sum_entry_encoding, method=True, store=True, string="Cash Transaction", help="Total cash transactions"),
'closing_date':fields.datetime("Closed On"),