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
799 B
30 lines
799 B
2 years ago
|
class Form::Sales::Questions::PreviousLaKnown < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "previous_la_known"
|
||
|
@check_answer_label = "Local authority of buyer 1’s last settled accommodation"
|
||
|
@header = "Do you know the local authority of buyer 1’s last settled accommodation?"
|
||
|
@type = "radio"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@hint_text = "This is also known as the household’s 'last settled home'"
|
||
|
@hidden_in_check_answers = {
|
||
|
"depends_on" => [
|
||
|
{
|
||
|
"previous_la_known" => 0,
|
||
|
},
|
||
|
{
|
||
|
"previous_la_known" => 1,
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
@conditional_for = {
|
||
|
"prevloc" => [1],
|
||
|
}
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"1" => { "value" => "Yes" },
|
||
|
"0" => { "value" => "No" },
|
||
|
}.freeze
|
||
|
end
|