[FIX] Close partial picking wizard after validation

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

bzr revid: quentin@tempo-quentin-20110228103841-zt0am5ylrxypaaez
This commit is contained in:
Quentin THEURET 2011-02-28 11:38:41 +01:00
parent 1bfe6c8df9
commit e349a9e008
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class stock_partial_picking(osv.osv_memory):
'product_currency': move.currency.id,
})
pick_obj.do_partial(cr, uid, picking_ids, partial_datas, context=context)
return {}
return {'type': 'ir.actions.act_window_close'}
stock_partial_picking()