[FIX] stock: clean previous commit
authorMartin Trigaux <mat@openerp.com>
Tue, 27 May 2014 15:56:30 +0000 (17:56 +0200)
committerMartin Trigaux <mat@openerp.com>
Tue, 27 May 2014 15:56:30 +0000 (17:56 +0200)
addons/stock/stock.py

index 64a4385..4c45de2 100644 (file)
@@ -2411,9 +2411,9 @@ class stock_move(osv.osv):
                 picking_ids.append(move.picking_id.id)
             if move.move_dest_id.id and (move.state != 'done'):
                 # Downstream move should only be triggered if this move is the last pending upstream move
-                other_upstream_move_ids = self.search(cr, uid, [('id','!=',move.id),('state','not in',['done','cancel']),
+                other_upstream_move_ids = self.search(cr, uid, [('id','not in',move_ids),('state','not in',['done','cancel']),
                                             ('move_dest_id','=',move.move_dest_id.id)], context=context)
-                if not set(other_upstream_move_ids) - set(move_ids):
+                if not other_upstream_move_ids:
                     self.write(cr, uid, [move.id], {'move_history_ids': [(4, move.move_dest_id.id)]})
                     if move.move_dest_id.state in ('waiting', 'confirmed'):
                         self.force_assign(cr, uid, [move.move_dest_id.id], context=context)