Compare commits
No commits in common. "a9f0c83e3530440d24742409fb0a731b9299cd53" and "27e51a80d29bbf1b171b46e6f0a29fbcee908fd7" have entirely different histories.
a9f0c83e35
...
27e51a80d2
|
|
@ -33,7 +33,6 @@ class HrEmployee(models.Model):
|
|||
@api.model
|
||||
def get_user_employee_details(self):
|
||||
uid = request.session.uid
|
||||
self.env["hr.employee"].sudo().search([("user_id", "=", uid)])._compute_experience()
|
||||
"""To fetch the details of employee"""
|
||||
return self.env["hr.employee"].sudo().search_read(
|
||||
[("user_id", "=", uid)],
|
||||
|
|
|
|||
|
|
@ -256,8 +256,6 @@ class HRJobRecruitment(models.Model):
|
|||
rec.submission_status = 'zero'
|
||||
|
||||
|
||||
experience = fields.Many2one('candidate.experience', string="Experience")
|
||||
|
||||
@api.depends('application_ids.submitted_to_client')
|
||||
def _compute_no_of_submissions(self):
|
||||
counts = dict(self.env['hr.applicant']._read_group(
|
||||
|
|
|
|||
Loading…
Reference in New Issue