[FIX] stock: corrected picking type of an internal move from Outgoing to Internal

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

bzr revid: rha@tinyerp.com-20121001115225-fg97r5fdttyc09js
This commit is contained in:
Rifakat 2012-10-01 17:22:25 +05:30
parent 3686a01df3
commit 2723b20129
1 changed files with 1 additions and 1 deletions

View 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: