13 lines
399 B
Python
13 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
|