[FIX]:Installing a module when completed,it should reload the current menu tab
authorRga <>
Wed, 10 Nov 2010 09:33:40 +0000 (15:03 +0530)
committernch@tinyerp.com <>
Wed, 10 Nov 2010 09:33:40 +0000 (15:03 +0530)
lp bug: https://launchpad.net/bugs/534521 fixed

bzr revid: nch@tinyerp.com-20101110093340-s0itn4yoal02dvfc

bin/addons/base/res/res_config.py

index 5b3b075..8552e60 100644 (file)
@@ -113,9 +113,8 @@ class res_config_configurable(osv.osv_memory):
         current_user_menu = self.pool.get('res.users')\
             .browse(cr, uid, uid).menu_id
         # return the action associated with the menu
-        return self.pool.get(current_user_menu.type)\
-            .read(cr, uid, current_user_menu.id)
-
+        return {'menu_reload':True, 'type': 'object'}
+        
     def start(self, cr, uid, ids, context=None):
         ids2 = self.pool.get('ir.actions.todo').search(cr, uid, [], context=context)
         for todo in self.pool.get('ir.actions.todo').browse(cr, uid, ids2, context=context):