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.
25 lines
791 B
25 lines
791 B
class Form::Sales::Questions::PreviousPostcode < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "ppostcode_full" |
|
@check_answer_label = "Postcode of buyer 1’s last settled accommodation" |
|
@header = "Postcode" |
|
@type = "text" |
|
@width = 5 |
|
@inferred_check_answers_value = [{ |
|
"condition" => { |
|
"ppcodenk" => 1, |
|
}, |
|
"value" => "Not known", |
|
}] |
|
@inferred_answers = { |
|
"prevloc" => { |
|
"is_previous_la_inferred" => true, |
|
}, |
|
} |
|
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] |
|
@disable_clearing_if_not_routed_or_dynamic_answer_options = true |
|
end |
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 57, 2024 => 59 }.freeze |
|
end
|
|
|