Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 401 Bytes

File metadata and controls

13 lines (11 loc) · 401 Bytes

To use this functionality you need to return following action with list of actions to execute:

def foo(self):
   self.ensure_one()
   return {
      'type': 'ir.actions.act_multi',
      'actions': [
          {'type': 'ir.actions.act_window_close'},
          {'type': 'ir.actions.client', 'tag': 'reload'},
      ]
   }