Skip to content
Snippets Groups Projects
Commit b5ca9ed3 authored by Fabien Pinckaers's avatar Fabien Pinckaers
Browse files

[IMP] remove print statement

bzr revid: fp@tinyerp.com-20111115002234-hw9cjahxh3zw8gk5
parent 45580c3f
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,6 @@
move_line_obj = self.pool.get('account.move.line')
move_lines = move_line_obj.search(cr, uid, [('move_id', '=', invoice_id.move_id.id), ('invoice', '=', invoice_id.id), ('account_id', '=', invoice_id.account_id.id)])
move_line = move_line_obj.browse(cr, uid, move_lines[0])
print move_line.amount_residual, move_line.amount_residual_currency
assert (move_line.amount_residual_currency == 55.56 and move_line.amount_residual == 20) , "Residual amount is not correct for first Invoice"
-
I check the residual amuont of Invoice2, should be 22.22 in residual currency and 10 in amount_residual
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment