TypeError: hr.employee(26,) is not JSON serializable

TypeError: hr.employee(26,) is not JSON serializable

我尝试为 many2one 字段申请域。但我收到以下错误:

  @api.mutli
  def open_other_view(self):
      ......
      ......
      ......
      tree_id = self.env.ref('module_name.tree_xml_id').id
      return {
         'type': 'ir.actions.act_window',
         'name': 'title',
         'views': [(tree_id, 'tree'), (False, 'form')],
         'domain' : [('employee_id','=',self.employee_id)],
         ....
         ....
      }

您可以尝试获取员工 ID,例如:

'domain' : [('employee_id','=',self.employee_id.id)] 

希望对你有所帮助。