[FIX] account_payment : Missing reference of statement line variable fixed

bzr revid: ach@tinyerp.com-20101005084235-5x5wluw3jun63hn1
This commit is contained in:
RME(OpenERP),JMA(OpenERP) 2010-10-05 14:12:35 +05:30 committed by Anup (OpenERP)
parent 2300f9b49d
commit 491585cfc2
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class account_payment_populate_statement(osv.osv_memory):
'voucher_id': voucher_id,
}, context=context)
line_obj.write(cr, uid, [line.id], {'bank_statement_line_id': st_line_id})
line_obj.write(cr, uid, [line.id], {'bank_statement_line_id': st_line_id})
return {'type': 'ir.actions.act_window_close'}
account_payment_populate_statement()