Skip to content
Snippets Groups Projects
Commit 44da9c91 authored by Lucas Perais (lpe)'s avatar Lucas Perais (lpe)
Browse files

[FIX] hr_recruitment, receive email for applicant creation in right company

Before this commit, the email aliases on hr.jobs did not take into
account the department.
Hence, when receiving an email for an applicant through an alias,
the object applicant was created in the wrong company

after this commit, the alias is created with the right values, and the
applicant is created in the right company and department

OPW 1920085

closes odoo/odoo#30818
parent 703263ad
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,11 @@ class Job(models.Model):
def get_alias_values(self):
values = super(Job, self).get_alias_values()
values['alias_defaults'] = {'job_id': self.id}
values['alias_defaults'] = {
'job_id': self.id,
'department_id': self.department_id.id,
'company_id': self.department_id.company_id.id if self.department_id else self.company_id.id
}
return values
@api.model
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment