mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-26 03:52:08 +02:00
12 lines
399 B
Python
12 lines
399 B
Python
# 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
|