[IMP]:stop opening of inventory form while changing of product stock

bzr revid: han@tinyerp.com-20110719111918-u6nza3n740csvp2g
This commit is contained in:
Hardik Ansodariy (OpenERP) 2011-07-19 16:49:18 +05:30
parent bcf4574d1e
commit ceb222bb94
1 changed files with 1 additions and 9 deletions

View File

@ -101,15 +101,7 @@ class stock_change_product_qty(osv.osv_memory):
inventry_obj.action_confirm(cr, uid, [inventory_id], context=context)
inventry_obj.action_done(cr, uid, [inventory_id], context=context)
return {
'domain': "[('id','=', %s)]" % (inventory_id),
'name' : _('Physical Inventories'),
'view_type': 'form',
'view_mode': 'tree,form',
'res_model': 'stock.inventory',
'context': context,
'type': 'ir.actions.act_window',
}
return {}
stock_change_product_qty()