Submit social housing lettings and sales data (CORE)
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.
|
|
|
class Form::Sales::Pages::PersonKnown < Form::Sales::Pages::Person
|
|
|
|
def initialize(id, hsh, subsection, person_index:)
|
|
|
|
super
|
|
|
|
@header_partial = "person_#{person_index}_known_page"
|
|
|
|
@depends_on = depends_on
|
|
|
|
end
|
|
|
|
|
|
|
|
def questions
|
|
|
|
@questions ||= [
|
|
|
|
Form::Sales::Questions::PersonKnown.new("details_known_#{@person_index}", nil, self, person_index: @person_index),
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def depends_on
|
|
|
|
if @person_index == 2
|
|
|
|
[{ "jointpur" => 2,
|
|
|
|
"hholdcount" => {
|
|
|
|
"operator" => ">=",
|
|
|
|
"operand" => 1,
|
|
|
|
} }]
|
|
|
|
else
|
|
|
|
[{ "jointpur" => 2,
|
|
|
|
"hholdcount" => {
|
|
|
|
"operator" => ">=",
|
|
|
|
"operand" => @person_index - 1,
|
|
|
|
} },
|
|
|
|
{ "jointpur" => 1,
|
|
|
|
"hholdcount" => {
|
|
|
|
"operator" => ">=",
|
|
|
|
"operand" => @person_index - 2,
|
|
|
|
} }]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|