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.
21 lines
970 B
21 lines
970 B
class Form::Sales::Questions::Discount < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "discount" |
|
@check_answer_label = "Percentage discount" |
|
@header = "What was the percentage discount?" |
|
@type = "numeric" |
|
@min = 0 |
|
@max = form.start_year_after_2024? ? 70 : 100 |
|
@step = 0.1 |
|
@width = 5 |
|
@suffix = "%" |
|
@hint_text = "For Right to Buy (RTB), Preserved Right to Buy (PRTB), and Voluntary Right to Buy (VRTB)</br></br> |
|
If discount capped, enter capped %</br></br> |
|
If the property is being sold to an existing tenant under the RTB, PRTB, or VRTB schemes, enter the % discount from the full market value that is being given." |
|
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] |
|
@top_guidance_partial = "financial_calculations_discounted_ownership" |
|
end |
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 102, 2024 => 103 }.freeze |
|
end
|
|
|