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.
17 lines
642 B
17 lines
642 B
2 years ago
|
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 = 100
|
||
|
@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."
|
||
|
end
|
||
|
end
|