[FIX] fixed inversion of columns in the move_ids many2many fields in an account_move_line

lp bug: https://launchpad.net/bugs/705797 fixed

bzr revid: olivier@tempo-laptop-20110121102821-lbptsdh26wwqlfaf
This commit is contained in:
Olivier DOSSMANN 2011-01-21 11:28:21 +01:00
parent 5a2fa0de43
commit 2b282ad6c9
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ class account_bank_statement_line(osv.osv):
select=True, required=True, ondelete='cascade'),
'analytic_account_id': fields.many2one('account.analytic.account', 'Analytic Account'),
'move_ids': fields.many2many('account.move',
'account_bank_statement_line_move_rel', 'move_id','statement_id',
'account_bank_statement_line_move_rel', 'statement_id','move_id',
'Moves'),
'ref': fields.char('Reference', size=32),
'note': fields.text('Notes'),