This commit is contained in:
raman 2025-04-18 15:01:36 +05:30
parent be0cbc33bb
commit c225eeec5d
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class HRJobRecruitment(models.Model):
# hiring_history = fields.One2many('recruitment.status.history', 'job_id', string='History')
is_favorite = fields.Boolean(compute='_compute_is_favorite', inverse='_inverse_is_favorite',store=True, tracking=True)
department_id = fields.Many2one('hr.department', string='Department', check_company=True, tracking=True)
description = fields.Html(string='Job Description', tracking=True, sanitize_attributes=False)
description = fields.Html(string='Job Description', sanitize_attributes=False)
requirements = fields.Text('Requirements', tracking=True)
expected_employees = fields.Integer(compute='_compute_employees', string='Total Forecasted Employees', store=True,
help='Expected number of employees for this job position after new recruitment.')