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.
21 lines
544 B
21 lines
544 B
2 years ago
|
class Form::Sales::Pages::PersonKnown < Form::Sales::Pages::Person
|
||
|
def initialize(id, hsh, subsection, person_index:)
|
||
|
super
|
||
|
@header_partial = "#{id}_page"
|
||
|
@header = ""
|
||
|
@description = ""
|
||
|
@subsection = subsection
|
||
|
@depends_on = page_depends_on
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [
|
||
|
Form::Sales::Questions::PersonKnown.new(field_for_person("details_known_"), nil, self, person_index: @person_index),
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def page_depends_on
|
||
|
(@person_index..4).map { |index| { "hholdcount" => index } }
|
||
|
end
|
||
|
end
|