[IMP] account: added missing label to ref field on account.move.line

bzr revid: qdp-launchpad@tinyerp.com-20100824142839-t6uclkgls2oj7lay
This commit is contained in:
qdp-launchpad@tinyerp.com 2010-08-24 16:28:39 +02:00
parent e9c8c42759
commit 37d61f380e
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ class account_move_line(osv.osv):
'account_id': fields.many2one('account.account', 'Account', required=True, ondelete="cascade", domain=[('type','<>','view'), ('type', '<>', 'closed')], select=2),
'move_id': fields.many2one('account.move', 'Move', ondelete="cascade", help="The move of this entry line.", select=2, required=True),
'narration': fields.related('move_id','narration', type='text', relation='account.move', string='Narration'),
'ref': fields.related('move_id', 'ref', type='char', size=64, store=True),
'ref': fields.related('move_id', 'ref', string='Reference', type='char', size=64, store=True),
'statement_id': fields.many2one('account.bank.statement', 'Statement', help="The bank statement used for bank reconciliation", select=1),
'reconcile_id': fields.many2one('account.move.reconcile', 'Reconcile', readonly=True, ondelete='set null', select=2),
'reconcile_partial_id': fields.many2one('account.move.reconcile', 'Partial Reconcile', readonly=True, ondelete='set null', select=2),