Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

32 lines
1.5 KiB

class Form::Lettings::Questions::ConditionEffects < ::Form::Question
def initialize(id, hsh, page)
super
@id = "condition_effects"
@check_answer_label = "How is person affected by condition or illness"
@header = "How is the person affected by their condition or illness?"
@type = "checkbox"
@check_answers_card_number = 0
@hint_text = "Select all that apply."
@answer_options = ANSWER_OPTIONS
@question_number = 74
end
ANSWER_OPTIONS = {
"illness_type_4" => {
"value" => "Dexterity",
"hint" => "For example, lifting and carrying objects or using a keyboard.",
},
"illness_type_5" => { "value" => "Learning or understanding or concentrating" },
"illness_type_2" => { "value" => "Hearing", "hint" => "For example, deafness or partial hearing." },
"illness_type_6" => { "value" => "Memory" },
"illness_type_7" => { "value" => "Mental health", "hint" => "For example, depression or anxiety." },
"illness_type_3" => { "value" => "Mobility", "hint" => "For example, walking short distances or climbing stairs." },
"illness_type_9" => {
"value" => "Socially or behaviourally",
"hint" => "For example, associated with autism spectrum disorder (ASD) which includes Asperger’s or attention deficit hyperactivity disorder (ADHD).",
},
"illness_type_8" => { "value" => "Stamina or breathing or fatigue" },
"illness_type_1" => { "value" => "Vision", "hint" => "For example, blindness or partial sight." },
"illness_type_10" => { "value" => "Other" },
}.freeze
end