[IMP]:stop opening of inventory form while changing of product stock
authorHardik Ansodariy (OpenERP) <han@tinyerp.com>
Tue, 19 Jul 2011 11:19:18 +0000 (16:49 +0530)
committerHardik Ansodariy (OpenERP) <han@tinyerp.com>
Tue, 19 Jul 2011 11:19:18 +0000 (16:49 +0530)
bzr revid: han@tinyerp.com-20110719111918-u6nza3n740csvp2g

addons/stock/wizard/stock_change_product_qty.py

index 83814e7..f12eabd 100644 (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()