This is a way to switch a other view after clicking
button
<button name="start_work" attrs="{'invisible':[('work_time_status','!=', True)]}" string="Stop Work" type="object" class="oe_highlight"/>
@api.multi
   
def start_work(self):
      
 course_form =
self.env.ref('your form view name',
False)
      
 return
{
      
     'name':
'New Course',
      
     'type':
'ir.actions.act_window',
      
     'res_model':
'your module name',
      
     'view_type':
'form',
      
     'view_mode':
'tree,form',
      
     'target':
'self',
      
     'views':
[(course_form.id, 'form')],
      
     'view_id':
'course_form.id',
      
     'flags':
{'action_buttons':
True},
        }