[FIX] stock: corrected picking type of an internal move from Outgoing to Internal
authorRifakat <rha@tinyerp.com>
Mon, 1 Oct 2012 11:52:25 +0000 (17:22 +0530)
committerRifakat <rha@tinyerp.com>
Mon, 1 Oct 2012 11:52:25 +0000 (17:22 +0530)
lp bug: https://launchpad.net/bugs/890476 fixed

bzr revid: rha@tinyerp.com-20121001115225-fg97r5fdttyc09js

addons/stock/stock.py

index 8e11803..cc0862b 100644 (file)
@@ -2125,7 +2125,7 @@ class stock_move(osv.osv):
                 old_ptype = location_obj.picking_type_get(cr, uid, picking.move_lines[0].location_id, picking.move_lines[0].location_dest_id)
                 if old_ptype != picking.type:
                     old_pick_name = seq_obj.get(cr, uid, 'stock.picking.' + old_ptype)
-                    self.pool.get('stock.picking').write(cr, uid, [picking.id], {'name': old_pick_name}, context=context)
+                    self.pool.get('stock.picking').write(cr, uid, [picking.id], {'name': old_pick_name, 'type': old_ptype}, context=context)
             else:
                 pickid = False
             for move, (loc, dummy, delay, dummy, company_id, ptype) in todo: