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.
33 lines
1.7 KiB
33 lines
1.7 KiB
class Form::Lettings::Subsections::IncomeAndBenefits < ::Form::Subsection |
|
def initialize(id, hsh, section) |
|
super |
|
@id = "income_and_benefits" |
|
@label = "Income, benefits and outgoings" |
|
@depends_on = [{ "non_location_setup_questions_completed?" => true }] |
|
end |
|
|
|
def pages |
|
@pages ||= [ |
|
Form::Lettings::Pages::IncomeKnown.new(nil, nil, self), |
|
Form::Lettings::Pages::IncomeAmount.new(nil, nil, self), |
|
Form::Lettings::Pages::NetIncomeValueCheck.new(nil, nil, self), |
|
Form::Lettings::Pages::HousingBenefit.new("housing_benefit", nil, self), |
|
Form::Lettings::Pages::BenefitsProportion.new("benefits_proportion", nil, self), |
|
Form::Lettings::Pages::RentOrOtherCharges.new(nil, nil, self), |
|
Form::Lettings::Pages::RentPeriod.new(nil, nil, self), |
|
Form::Lettings::Pages::CareHomeWeekly.new(nil, nil, self), |
|
Form::Lettings::Pages::CareHomeBiWeekly.new(nil, nil, self), |
|
Form::Lettings::Pages::CareHome4Weekly.new(nil, nil, self), |
|
Form::Lettings::Pages::CareHomeMonthly.new(nil, nil, self), |
|
Form::Lettings::Pages::CareHomeChargesValueCheck.new(nil, nil, self), |
|
Form::Lettings::Pages::RentWeekly.new(nil, nil, self), |
|
Form::Lettings::Pages::RentBiWeekly.new(nil, nil, self), |
|
Form::Lettings::Pages::Rent4Weekly.new(nil, nil, self), |
|
Form::Lettings::Pages::RentMonthly.new(nil, nil, self), |
|
Form::Lettings::Pages::MinRentValueCheck.new("brent_min_rent_value_check", nil, self, check_answers_card_number: 0), |
|
Form::Lettings::Pages::MaxRentValueCheck.new("brent_max_rent_value_check", nil, self, check_answers_card_number: 0), |
|
Form::Lettings::Pages::Outstanding.new(nil, nil, self), |
|
Form::Lettings::Pages::OutstandingAmount.new(nil, nil, self), |
|
].compact |
|
end |
|
end
|
|
|