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