Browse Source

CLDC-3156: Update other referral questions

pull/2366/head
Robert Sullivan 2 years ago
parent
commit
e9928b63d0
  1. 53
      app/models/form/lettings/questions/referral_prp.rb
  2. 52
      app/models/form/lettings/questions/referral_supported_housing.rb
  3. 110
      app/models/form/lettings/questions/referral_supported_housing_prp.rb

53
app/models/form/lettings/questions/referral_prp.rb

@ -7,11 +7,58 @@ class Form::Lettings::Questions::ReferralPrp < ::Form::Question
@type = "radio" @type = "radio"
@check_answers_card_number = 0 @check_answers_card_number = 0
@hint_text = "You told us that the needs type is general needs. We have removed some options because of this." @hint_text = "You told us 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
if form.start_year_after_2024?
{
"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 nomination)",
},
"3" => {
"value" => "Nominated by a local housing authority",
},
"4" => {
"value" => "Referred by local authority housing department",
},
"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",
},
"18" => {
"value" => "Police, probation, prison or youth offending team – tenant had custodial sentence",
},
"19" => {
"value" => "Police, probation, prison or youth offending team – no custodial sentence",
},
"7" => {
"value" => "Voluntary agency",
},
"17" => {
"value" => "Children’s Social Care",
},
"16" => {
"value" => "Other",
},
}.freeze
else
{
"1" => { "1" => {
"value" => "Internal transfer", "value" => "Internal transfer",
"hint" => "Where the tenant has moved to another social property owned by the same landlord.", "hint" => "Where the tenant has moved to another social property owned by the same landlord.",
@ -56,6 +103,8 @@ class Form::Lettings::Questions::ReferralPrp < ::Form::Question
"value" => "Other", "value" => "Other",
}, },
}.freeze }.freeze
end
end
QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze
end end

52
app/models/form/lettings/questions/referral_supported_housing.rb

@ -7,11 +7,12 @@ class Form::Lettings::Questions::ReferralSupportedHousing < ::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. We have removed some options because of this." @hint_text = "You told us that you are a local authority. 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
if form.start_year_after_2024?
{
"1" => { "1" => {
"value" => "Internal transfer", "value" => "Internal transfer",
"hint" => "Where the tenant has moved to another social property owned by the same landlord.", "hint" => "Where the tenant has moved to another social property owned by the same landlord.",
@ -20,7 +21,50 @@ class Form::Lettings::Questions::ReferralSupportedHousing < ::Form::Question
"value" => "Tenant applied directly (no referral)", "value" => "Tenant applied directly (no referral)",
}, },
"3" => { "3" => {
"value" => "Referred by local authority housing department", "value" => "Nominated by a local housing authority",
},
"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",
},
"18" => {
"value" => "Police, probation, prison or youth offending team – tenant had custodial sentence",
},
"19" => {
"value" => "Police, probation, prison or youth offending team – no custodial sentence",
},
"7" => {
"value" => "Voluntary agency",
},
"17" => {
"value" => "Children’s Social Care",
},
"16" => {
"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)",
},
"3" => {
"value" => "Nominated by a local housing authority",
}, },
"8" => { "8" => {
"value" => "Re-located through official housing mobility scheme", "value" => "Re-located through official housing mobility scheme",
@ -53,6 +97,8 @@ class Form::Lettings::Questions::ReferralSupportedHousing < ::Form::Question
"value" => "Other", "value" => "Other",
}, },
}.freeze }.freeze
end
end
QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze QUESTION_NUMBER_FROM_YEAR = { 2023 => 85, 2024 => 84 }.freeze
end end

110
app/models/form/lettings/questions/referral_supported_housing_prp.rb

@ -7,26 +7,104 @@ class Form::Lettings::Questions::ReferralSupportedHousingPrp < ::Form::Question
@type = "radio" @type = "radio"
@check_answers_card_number = 0 @check_answers_card_number = 0
@hint_text = "" @hint_text = ""
@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" => { "value" => "Internal transfer", "hint" => "Where the tenant has moved to another social property owned by the same landlord." }, if form.start_year_after_2024?
"2" => { "value" => "Tenant applied directly (no referral or nomination)" }, {
"3" => { "value" => "Nominated by a local housing authority" }, "1" => {
"4" => { "value" => "Referred by local authority housing department" }, "value" => "Internal transfer",
"8" => { "value" => "Re-located through official housing mobility scheme" }, "hint" => "Where the tenant has moved to another social property owned by the same landlord.",
"10" => { "value" => "Other social landlord" }, },
"9" => { "value" => "Community learning disability team" }, "2" => {
"14" => { "value" => "Community mental health team" }, "value" => "Tenant applied directly (no referral or nomination)",
"15" => { "value" => "Health service" }, },
"12" => { "value" => "Police, probation or prison" }, "3" => {
"7" => { "value" => "Voluntary agency" }, "value" => "Nominated by a local housing authority",
"13" => { "value" => "Youth offending team" }, },
"17" => { "value" => "Children’s Social Care" }, "4" => {
"16" => { "value" => "Other" }, "value" => "Referred by local authority housing department",
},
"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",
},
"18" => {
"value" => "Police, probation, prison or youth offending team – tenant had custodial sentence",
},
"19" => {
"value" => "Police, probation, prison or youth offending team – no custodial sentence",
},
"7" => {
"value" => "Voluntary agency",
},
"17" => {
"value" => "Children’s Social Care",
},
"16" => {
"value" => "Other",
},
}.freeze }.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)",
},
"3" => {
"value" => "Nominated by a local housing authority",
},
"4" => {
"value" => "Referred by local authority housing department",
},
"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