[FIX] OPW 50562: stock: fix picking type for chained picking
authorXavier ALT <xal@openerp.com>
Mon, 1 Oct 2012 09:00:29 +0000 (11:00 +0200)
committerXavier ALT <xal@openerp.com>
Mon, 1 Oct 2012 09:00:29 +0000 (11:00 +0200)
  forward port of v6.0 revid: nel@tinyerp.com-20111117130826-1hejw9bonokwalkl

lp bug: https://launchpad.net/bugs/890476 fixed

bzr revid: xal@openerp.com-20121001090029-jitezscbug6x2w0f

addons/stock/stock.py

index b8b14d7..dd52404 100644 (file)
@@ -1939,7 +1939,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: