17 lines
578 B
17 lines
578 B
class Form::Sales::Questions::BuyerInterview < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "noint" |
|
@check_answer_label = "Buyer interviewed in person?" |
|
@header = "Was the buyer interviewed for any of the answers you will provide on this log?" |
|
@type = "radio" |
|
@hint_text = "You should still try to answer all questions even if the buyer wasn't interviewed in person" |
|
@answer_options = ANSWER_OPTIONS |
|
@question_number = 18 |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"2" => { "value" => "Yes" }, |
|
"1" => { "value" => "No" }, |
|
}.freeze |
|
end
|
|
|