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.
20 lines
546 B
20 lines
546 B
2 years ago
|
class Form::Lettings::Questions::Tcharge4Weekly < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "tcharge"
|
||
|
@check_answer_label = "Household rent and charges"
|
||
|
@header = "Total charge"
|
||
|
@type = "numeric_output"
|
||
|
@width = 5
|
||
|
@check_answers_card_number = 0
|
||
|
@min = 0
|
||
|
@hint_text = "This is the total for rent and all charges."
|
||
|
@step = 0.01
|
||
|
@readonly = true
|
||
|
@prefix = "£"
|
||
|
@suffix = " every 4 weeks"
|
||
|
@requires_js = true
|
||
|
@fields_added = %w[brent scharge pscharge supcharg]
|
||
|
end
|
||
|
end
|