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.
32 lines
893 B
32 lines
893 B
class Form::Sales::Questions::Fromprop < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "fromprop" |
|
@check_answer_label = "Previous property type" |
|
@header = "What was the previous property type?" |
|
@type = "radio" |
|
@hint_text = "" |
|
@page = page |
|
@answer_options = ANSWER_OPTIONS |
|
@question_number = 86 |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"1" => { "value" => "Flat or maisonette" }, |
|
"2" => { "value" => "Bedsit" }, |
|
"3" => { "value" => "House" }, |
|
"4" => { "value" => "Bungalow" }, |
|
"9" => { "value" => "Other" }, |
|
"0" => { "value" => "Don’t know" }, |
|
}.freeze |
|
|
|
def displayed_answer_options(_log, _user = nil) |
|
{ |
|
"1" => { "value" => "Flat or maisonette" }, |
|
"2" => { "value" => "Bedsit" }, |
|
"3" => { "value" => "House" }, |
|
"4" => { "value" => "Bungalow" }, |
|
"9" => { "value" => "Other" }, |
|
} |
|
end |
|
end
|
|
|