[IMP] account: improved label and tooltip on to_check field of account.move

bzr revid: qdp-launchpad@tinyerp.com-20100827083638-3xa9e1jvko2fpr8a
This commit is contained in:
qdp-launchpad@tinyerp.com 2010-08-27 10:36:38 +02:00
parent 6b46a26b37
commit 60434c13bc
1 changed files with 1 additions and 1 deletions

View File

@ -1075,7 +1075,7 @@ class account_move(osv.osv):
'state': fields.selection([('draft','Draft'), ('posted','Posted')], 'State', required=True, readonly=True,
help='When new account move is created the state will be \'Draft\'. When all the payments are done it will be in \'Posted\' state.'),
'line_id': fields.one2many('account.move.line', 'move_id', 'Entries', states={'posted':[('readonly',True)]}),
'to_check': fields.boolean('To Be Verified'),
'to_check': fields.boolean('To Review', help='Check this box if you are unsure of that journal entry and if you want to note it as \'to be reviewed\' by an accounting expert.'),
'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner"),
'amount': fields.function(_amount_compute, method=True, string='Amount', digits_compute=dp.get_precision('Account'), type='float', fnct_search=_search_amount),
'date': fields.date('Date', required=True, states={'posted':[('readonly',True)]}),