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.
 
 
 
 

30 lines
668 B

class Form::Sales::Questions::Buyer2AgeKnown < ::Form::Question
def initialize(id, hsh, page)
super
@id = "age2_known"
@check_answer_label = "Buyer 2’s age"
@header = "Do you know buyer 2’s age?"
@type = "radio"
@answer_options = ANSWER_OPTIONS
@conditional_for = {
"age2" => [0],
}
@hidden_in_check_answers = {
"depends_on" => [
{
"age2_known" => 0,
},
{
"age2_known" => 1,
},
],
}
@check_answers_card_number = 2
@question_number = 28
end
ANSWER_OPTIONS = {
"0" => { "value" => "Yes" },
"1" => { "value" => "No" },
}.freeze
end