|
|
|
|
@ -7,19 +7,35 @@ class Form::Lettings::Questions::Layear < ::Form::Question
|
|
|
|
|
@type = "radio" |
|
|
|
|
@check_answers_card_number = 0 |
|
|
|
|
@hint_text = "" |
|
|
|
|
@answer_options = ANSWER_OPTIONS |
|
|
|
|
@question_number = 75 |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
ANSWER_OPTIONS = { |
|
|
|
|
"1" => { "value" => "Just moved to local authority area" }, |
|
|
|
|
"2" => { "value" => "Less than 1 year" }, |
|
|
|
|
"7" => { "value" => "1 year but under 2 years" }, |
|
|
|
|
"8" => { "value" => "2 years but under 3 years" }, |
|
|
|
|
"9" => { "value" => "3 years but under 4 years" }, |
|
|
|
|
"10" => { "value" => "4 years but under 5 years" }, |
|
|
|
|
"5" => { "value" => "5 years or more" }, |
|
|
|
|
"divider" => { "value" => true }, |
|
|
|
|
"6" => { "value" => "Don’t know" }, |
|
|
|
|
}.freeze |
|
|
|
|
def answer_options |
|
|
|
|
if form.start_year_after_2024? |
|
|
|
|
{ |
|
|
|
|
"1" => { "value" => "Just moved to local authority area with this new let" }, |
|
|
|
|
"2" => { "value" => "Less than 1 year" }, |
|
|
|
|
"7" => { "value" => "1 year but under 2 years" }, |
|
|
|
|
"8" => { "value" => "2 years but under 3 years" }, |
|
|
|
|
"9" => { "value" => "3 years but under 4 years" }, |
|
|
|
|
"10" => { "value" => "4 years but under 5 years" }, |
|
|
|
|
"11" => { "value" => "5 years but under 10 years" }, |
|
|
|
|
"12" => { "value" => "10 years or more" }, |
|
|
|
|
"divider" => { "value" => true }, |
|
|
|
|
"6" => { "value" => "Don’t know" }, |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
"1" => { "value" => "Just moved to local authority area" }, |
|
|
|
|
"2" => { "value" => "Less than 1 year" }, |
|
|
|
|
"7" => { "value" => "1 year but under 2 years" }, |
|
|
|
|
"8" => { "value" => "2 years but under 3 years" }, |
|
|
|
|
"9" => { "value" => "3 years but under 4 years" }, |
|
|
|
|
"10" => { "value" => "4 years but under 5 years" }, |
|
|
|
|
"5" => { "value" => "5 years or more" }, |
|
|
|
|
"divider" => { "value" => true }, |
|
|
|
|
"6" => { "value" => "Don’t know" }, |
|
|
|
|
} |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|