From 9f3d07d7bee0e0d208e9d4e1cd998be99ac63726 Mon Sep 17 00:00:00 2001 From: shankar Date: Wed, 12 Mar 2025 18:26:43 +0530 Subject: [PATCH] Change to Expeted Skills TO Primary Skills --- .../hr_recruitment_extended/models/hr_job_recruitment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons_extensions/hr_recruitment_extended/models/hr_job_recruitment.py b/addons_extensions/hr_recruitment_extended/models/hr_job_recruitment.py index 7d9b978ea..e7c51092e 100644 --- a/addons_extensions/hr_recruitment_extended/models/hr_job_recruitment.py +++ b/addons_extensions/hr_recruitment_extended/models/hr_job_recruitment.py @@ -151,7 +151,7 @@ class HRJobRecruitment(models.Model): tracking=True, help="The Recruiter will be the default value for all Applicants in this job \ position. The Recruiter is automatically added to all meetings with the Applicant.") interviewer_ids = fields.Many2many('res.users', string='Interviewers', domain="[('share', '=', False), ('company_ids', 'in', company_id)]", help="The Interviewers set on the job position can see all Applicants in it. They have access to the information, the attachments, the meeting management and they can refuse him. You don't need to have Recruitment rights to be set as an interviewer.") - skill_ids = fields.Many2many('hr.skill','hr_job_recruitment_hr_primary_skill_rel','job_id', 'user_id', string="Expected Skills") + skill_ids = fields.Many2many('hr.skill','hr_job_recruitment_hr_primary_skill_rel','job_id', 'user_id', string="Primary Skills") address_id = fields.Many2one( 'res.partner', "Job Location", default=_default_address_id, domain="[('is_company','=',True),('contact_type','=',recruitment_type)]",