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.
23 lines
939 B
23 lines
939 B
class Form::Lettings::Questions::Benefits < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "benefits" |
|
@check_answer_label = "Household income from Universal Credit, state pension or benefits" |
|
@header = "How much of the household’s income is from Universal Credit, state pensions or benefits?" |
|
@type = "radio" |
|
@check_answers_card_number = 0 |
|
@hint_text = "This excludes child and housing benefit, council tax support and tax credits." |
|
@answer_options = ANSWER_OPTIONS |
|
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"1" => { "value" => "All" }, |
|
"2" => { "value" => "Some" }, |
|
"3" => { "value" => "None" }, |
|
"divider" => { "value" => true }, |
|
"4" => { "value" => "Don’t know" }, |
|
}.freeze |
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 90, 2024 => 89 }.freeze |
|
end
|
|
|