oca-ocb-hr/odoo-bringout-oca-ocb-hr_skills_survey/hr_skills_survey/models/survey_survey.py
Ernad Husremovic e1d89e11e3 19.0 vanilla
2026-03-09 09:31:00 +01:00

12 lines
419 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class SurveySurvey(models.Model):
_inherit = 'survey.survey'
certification_validity_months = fields.Integer(
'Validity', required=False,
help='Specify the number of months the certification is valid after being awarded. '
'Enter 0 for certifications that never expire.')