Is it possible to override save button and redirect to a new view after saving the record? Or is there another solution?
something like this:
@api.model
def create(self, vals):
return{
'name': ('new view'),
'view_type': 'kanban',
'view_mode': 'kanban',
'res_model': 'model.test',
'view_id': False,
'type': 'ir.actions.act_window',
'target': 'current',
}
return super(CourseSeries, self).create(vals)