[IMP] remove print statement

bzr revid: fp@tinyerp.com-20111115002234-hw9cjahxh3zw8gk5
This commit is contained in:
Fabien Pinckaers 2011-11-15 01:22:34 +01:00
parent 45580c3f53
commit b5ca9ed355
1 changed files with 0 additions and 1 deletions

View File

@ -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