I am newbie. Can you help me solve this problem?
My Field
employee_id = fields.Many2one(comodel_name="hr.employee", string="Employee", required=True, )
@api.model
def default_get(self):
res=super(Employee,self).default_get('employee_id')
return res
Ok Thanks