20 lines
795 B
20 lines
795 B
class Form::Sales::Subsections::HouseholdNeeds < ::Form::Subsection |
|
def initialize(id, hsh, section) |
|
super |
|
@id = "household_needs" |
|
@label = "Other household information" |
|
@depends_on = [{ "setup_completed?" => true }] |
|
end |
|
|
|
def pages |
|
@pages ||= [ |
|
Form::Sales::Pages::ArmedForces.new(nil, nil, self), |
|
Form::Sales::Pages::BuyerStillServing.new(nil, nil, self), |
|
Form::Sales::Pages::ArmedForcesSpouse.new(nil, nil, self), |
|
Form::Sales::Pages::HouseholdDisability.new(nil, nil, self), |
|
Form::Sales::Pages::HouseholdWheelchairCheck.new("disability_wheelchair_check", nil, self), |
|
Form::Sales::Pages::HouseholdWheelchair.new(nil, nil, self), |
|
Form::Sales::Pages::HouseholdWheelchairCheck.new("wheelchair_check", nil, self), |
|
] |
|
end |
|
end
|
|
|