15 lines
475 B
15 lines
475 B
class Form::Sales::Pages::PersonGenderIdentity < Form::Sales::Pages::Person |
|
def initialize(id, hsh, subsection, person_index:) |
|
super |
|
@copy_key = "sales.household_characteristics.sex2.person" if person_index == 2 |
|
@depends_on = [ |
|
{ "details_known_#{person_index}" => 1 }, |
|
] |
|
end |
|
|
|
def questions |
|
@questions ||= [ |
|
Form::Sales::Questions::PersonGenderIdentity.new("sex#{@person_index}", nil, self, person_index: @person_index), |
|
] |
|
end |
|
end
|
|
|