Odoo18-Base/addons/hr_recruitment_survey/controllers/main.py

13 lines
399 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.survey.controllers import main
class ApplicantSurvey(main.Survey):
def _prepare_retry_additional_values(self, answer):
result = super()._prepare_retry_additional_values(answer)
if answer.applicant_id:
result["applicant_id"] = answer.applicant_id.id
return result