From: Josse Colpaert Date: Tue, 2 Dec 2014 16:24:26 +0000 (+0100) Subject: [FIX] Avoid endless loop when doing a return picking X-Git-Url: http://git.inspyration.org/?p=odoo%2Fodoo.git;a=commitdiff_plain;h=536d00d2ba3fae4ed0e24b621d7ca98917a7a260 [FIX] Avoid endless loop when doing a return picking --- diff --git a/addons/stock/wizard/stock_return_picking.py b/addons/stock/wizard/stock_return_picking.py index 112b233..deb624e 100644 --- a/addons/stock/wizard/stock_return_picking.py +++ b/addons/stock/wizard/stock_return_picking.py @@ -103,7 +103,7 @@ class stock_return_picking(osv.osv_memory): # Cancel assignment of existing chained assigned moves moves_to_unreserve = [] for move in pick.move_lines: - to_check_moves = [move.move_dest_id] + to_check_moves = [move.move_dest_id] if move.move_dest_id.id else [] while to_check_moves: current_move = to_check_moves.pop() if current_move.state not in ('done', 'cancel') and current_move.reserved_quant_ids: