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.
41 lines
1.6 KiB
41 lines
1.6 KiB
class Form::Lettings::Questions::ReasonRenewal < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "reason" |
|
@check_answer_label = "Reason for leaving last settled home" |
|
@header = "What is the tenant’s main reason for the household leaving their last settled home?" |
|
@type = "radio" |
|
@check_answers_card_number = 0 |
|
@hint_text = "You told us this letting is a renewal. We have removed some options because of this." |
|
@question_number = 77 |
|
@conditional_for = { |
|
"reasonother" => [ |
|
20, |
|
], |
|
} |
|
end |
|
|
|
def answer_options |
|
if form.start_year_after_2024? |
|
{ |
|
"50" => { "value" => "End of social housing tenancy - no fault" }, |
|
"51" => { "value" => "End of social housing tenancy - evicted due to anti-social behaviour (ASB)" }, |
|
"52" => { "value" => "End of social housing tenancy - evicted due to rent arrears" }, |
|
"53" => { "value" => "End of social housing tenancy - evicted for any other reason" }, |
|
"20" => { "value" => "Other" }, |
|
"47" => { "value" => "Tenant prefers not to say" }, |
|
"divider" => { "value" => true }, |
|
"28" => { "value" => "Don’t know" }, |
|
}.freeze |
|
else |
|
{ |
|
"40" => { "value" => "End of assured shorthold tenancy (no fault)" }, |
|
"42" => { "value" => "End of fixed term tenancy (no fault)" }, |
|
"20" => { "value" => "Other" }, |
|
"47" => { "value" => "Tenant prefers not to say" }, |
|
"divider" => { "value" => true }, |
|
"28" => { "value" => "Don’t know" }, |
|
}.freeze |
|
end |
|
end |
|
end
|
|
|