Browse Source

CLDC-3156: Update 2024 referral options

pull/2366/head
Robert Sullivan 2 years ago
parent
commit
dc09ba996d
  1. 123
      app/models/form/lettings/questions/referral.rb

123
app/models/form/lettings/questions/referral.rb

@ -7,49 +7,92 @@ class Form::Lettings::Questions::Referral < ::Form::Question
@type = "radio" @type = "radio"
@check_answers_card_number = 0 @check_answers_card_number = 0
@hint_text = "You told us that you are a local authority and that the needs type is general needs. We have removed some options because of this." @hint_text = "You told us that you are a local authority and that the needs type is general needs. We have removed some options because of this."
@answer_options = ANSWER_OPTIONS
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
end end
ANSWER_OPTIONS = { def answer_options
"1" => { if form.start_year_after_2024?
"value" => "Internal transfer", {
"hint" => "Where the tenant has moved to another social property owned by the same landlord.", "1" => {
}, "value" => "Internal transfer",
"2" => { "hint" => "Where the tenant has moved to another social property owned by the same landlord.",
"value" => "Tenant applied directly (no referral or nomination)", },
}, "2" => {
"8" => { "value" => "Tenant applied directly (no referral or nomination)",
"value" => "Re-located through official housing mobility scheme", },
}, "8" => {
"10" => { "value" => "Re-located through official housing mobility scheme",
"value" => "Other social landlord", },
}, "10" => {
"9" => { "value" => "Other social landlord",
"value" => "Community learning disability team", },
}, "9" => {
"14" => { "value" => "Community learning disability team",
"value" => "Community mental health team", },
}, "14" => {
"15" => { "value" => "Community mental health team",
"value" => "Health service", },
}, "15" => {
"12" => { "value" => "Health service",
"value" => "Police, probation or prison", },
}, "18" => {
"7" => { "value" => "Police, probation, prison or youth offending team – tenant had custodial sentence",
"value" => "Voluntary agency", },
}, "19" => {
"13" => { "value" => "Police, probation, prison or youth offending team – no custodial sentence",
"value" => "Youth offending team", },
}, "7" => {
"17" => { "value" => "Voluntary agency",
"value" => "Children’s Social Care", },
}, "17" => {
"16" => { "value" => "Children’s Social Care",
"value" => "Other", },
}, "16" => {
}.freeze "value" => "Other",
},
}.freeze
else
{
"1" => {
"value" => "Internal transfer",
"hint" => "Where the tenant has moved to another social property owned by the same landlord.",
},
"2" => {
"value" => "Tenant applied directly (no referral or nomination)",
},
"8" => {
"value" => "Re-located through official housing mobility scheme",
},
"10" => {
"value" => "Other social landlord",
},
"9" => {
"value" => "Community learning disability team",
},
"14" => {
"value" => "Community mental health team",
},
"15" => {
"value" => "Health service",
},
"12" => {
"value" => "Police, probation or prison",
},
"7" => {
"value" => "Voluntary agency",
},
"13" => {
"value" => "Youth offending team",
},
"17" => {
"value" => "Children’s Social Care",
},
"16" => {
"value" => "Other",
},
}.freeze
end
end
QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze
end end

Loading…
Cancel
Save