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.
17 lines
399 B
17 lines
399 B
2 years ago
|
class Form::Sales::Pages::LastAccommodationLa < ::Form::Page
|
||
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
|
@id = "last_accommodation_la"
|
||
|
@depends_on = [{
|
||
|
"is_previous_la_inferred" => false,
|
||
|
}]
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [
|
||
|
Form::Sales::Questions::PreviousLaKnown.new(nil, nil, self),
|
||
|
Form::Sales::Questions::Prevloc.new(nil, nil, self),
|
||
|
]
|
||
|
end
|
||
|
end
|