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.
40 lines
897 B
40 lines
897 B
class Form::Sales::Questions::Mortgageused < ::Form::Question |
|
def initialize(id, hsh, subsection, ownershipsch:) |
|
super(id, hsh, subsection) |
|
@id = "mortgageused" |
|
@check_answer_label = "Mortgage used" |
|
@header = "Was a mortgage used for the purchase of this property?" |
|
@type = "radio" |
|
@answer_options = ANSWER_OPTIONS |
|
@ownershipsch = ownershipsch |
|
@question_number = question_number |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"1" => { "value" => "Yes" }, |
|
"2" => { "value" => "No" }, |
|
"3" => { "value" => "Don’t know" }, |
|
}.freeze |
|
|
|
def displayed_answer_options(log, _user = nil) |
|
if log.stairowned == 100 |
|
ANSWER_OPTIONS |
|
else |
|
{ |
|
"1" => { "value" => "Yes" }, |
|
"2" => { "value" => "No" }, |
|
} |
|
end |
|
end |
|
|
|
def question_number |
|
case @ownershipsch |
|
when 1 |
|
90 |
|
when 2 |
|
103 |
|
when 3 |
|
111 |
|
end |
|
end |
|
end
|
|
|