Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

19 lines
544 B

class Form::Lettings::Questions::TchargeMonthly < ::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 month"
@requires_js = true
@fields_added = %w[brent scharge pscharge supcharg]
end
end