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.
31 lines
710 B
31 lines
710 B
class Form::Sales::Questions::MortgageLength < ::Form::Question |
|
def initialize(id, hsh, subsection, ownershipsch:) |
|
super(id, hsh, subsection) |
|
@id = "mortlen" |
|
@check_answer_label = "Length of mortgage" |
|
@header = "What is the length of the mortgage?" |
|
@type = "numeric" |
|
@min = 0 |
|
@max = 60 |
|
@step = 1 |
|
@width = 5 |
|
@hint_text = "You should round up to the nearest year. Value should not exceed 60 years." |
|
@ownershipsch = ownershipsch |
|
@question_number = question_number |
|
end |
|
|
|
def question_number |
|
case @ownershipsch |
|
when 1 |
|
93 |
|
when 2 |
|
106 |
|
when 3 |
|
114 |
|
end |
|
end |
|
|
|
def suffix_label(log) |
|
" #{'year'.pluralize(log[id])}" |
|
end |
|
end
|
|
|