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.
13 lines
437 B
13 lines
437 B
1 week ago
|
class Form::Lettings::Pages::ReferralGeneralNeeds < ::Form::Page
|
||
2 years ago
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
|
@id = "referral_prp"
|
||
4 months ago
|
@copy_key = "lettings.household_situation.referral.general_needs.prp"
|
||
2 years ago
|
@depends_on = [{ "owning_organisation_provider_type" => "PRP", "needstype" => 1, "renewal" => 0 }]
|
||
2 years ago
|
end
|
||
|
|
||
|
def questions
|
||
1 week ago
|
@questions ||= [Form::Lettings::Questions::ReferralGeneralNeeds.new(nil, nil, self)]
|
||
2 years ago
|
end
|
||
|
end
|