[MERGE] [FIX] stock: Correctly pass referece for Chained Location (case: 593003)

bzr revid: mat@openerp.com-20130909153221-0o6nt9d9x0kfk7vt
This commit is contained in:
Martin Trigaux 2013-09-09 17:32:21 +02:00
commit 833bc853db
1 changed files with 4 additions and 1 deletions

View File

@ -2063,7 +2063,10 @@ class stock_move(osv.osv):
ptype = todo[0][1][5] and todo[0][1][5] or location_obj.picking_type_get(cr, uid, todo[0][0].location_dest_id, todo[0][1][0])
if picking:
# name of new picking according to its type
new_pick_name = seq_obj.get(cr, uid, 'stock.picking.' + ptype)
if ptype == 'internal':
new_pick_name = seq_obj.get(cr, uid,'stock.picking')
else :
new_pick_name = seq_obj.get(cr, uid, 'stock.picking.' + ptype)
pickid = self._create_chained_picking(cr, uid, new_pick_name, picking, ptype, todo, context=context)
# Need to check name of old picking because it always considers picking as "OUT" when created from Sales Order
old_ptype = location_obj.picking_type_get(cr, uid, picking.move_lines[0].location_id, picking.move_lines[0].location_dest_id)