You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
class Form::Sales::Questions::PrivacyNotice < ::Form::Question |
|
def initialize(id, hsh, page, joint_purchase:) |
|
super(id, hsh, page) |
|
@id = "privacynotice" |
|
@copy_key = "sales.#{subsection.copy_key}.privacynotice.#{joint_purchase ? 'joint_purchase' : 'not_joint_purchase'}" |
|
@type = "checkbox" |
|
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] |
|
@joint_purchase = joint_purchase |
|
@top_guidance_partial = guidance |
|
end |
|
|
|
def answer_options |
|
declaration_text = if form.start_year_2024_or_later? |
|
"The #{@joint_purchase ? 'buyers have' : 'buyer has'} seen or been given access to the MHCLG privacy notice" |
|
else |
|
"The #{@joint_purchase ? 'buyers have' : 'buyer has'} seen the MHCLG privacy notice" |
|
end |
|
|
|
{ "privacynotice" => { "value" => declaration_text } }.freeze |
|
end |
|
|
|
def unanswered_error_message |
|
buyer_or_buyers = @joint_purchase ? "buyers" : "buyer" |
|
if form.start_year_2024_or_later? |
|
I18n.t("validations.privacynotice.missing.post_2024", buyer_or_buyers:) |
|
else |
|
I18n.t("validations.privacynotice.missing.pre_2024", buyer_or_buyers:) |
|
end |
|
end |
|
|
|
def guidance |
|
@joint_purchase ? "privacy_notice_buyer_joint_purchase" : "privacy_notice_buyer" |
|
end |
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 19, 2024 => 14 }.freeze |
|
end
|
|
|