I have the following wizard function that returns a notification to the client after do something:
def wizard_do_something(self):
# do something
return {
            'type': 'ir.actions.client',
            'tag': 'display_notification',
            'params': {
                'title': 'Carga de archivos',
                'message': client_message,
                'sticky': True,
                'target': 'current',
            }
        } If the return is a notification, the modal won't close. It is possible to show the notification and then close the wizard modal?
