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.
39 lines
932 B
39 lines
932 B
class Form::Sales::Questions::HasLeaseholdCharges < ::Form::Question |
|
def initialize(id, hsh, subsection, ownershipsch:) |
|
super(id, hsh, subsection) |
|
@id = "has_mscharge" |
|
@check_answer_label = "Does the property have any monthly leasehold charges?" |
|
@header = "Does the property have any monthly leasehold charges?" |
|
@hint_text = "For example, service and management charges" |
|
@type = "radio" |
|
@answer_options = ANSWER_OPTIONS |
|
@conditional_for = { |
|
"mscharge" => [1], |
|
} |
|
@hidden_in_check_answers = { |
|
"depends_on" => [ |
|
{ |
|
"has_mscharge" => 1, |
|
}, |
|
], |
|
} |
|
@ownershipsch = ownershipsch |
|
@question_number = question_number |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"1" => { "value" => "Yes" }, |
|
"0" => { "value" => "No" }, |
|
}.freeze |
|
|
|
def question_number |
|
case @ownershipsch |
|
when 1 |
|
99 |
|
when 2 |
|
110 |
|
when 3 |
|
117 |
|
end |
|
end |
|
end
|
|
|