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.
 
 
 
 

18 lines
427 B

class Form::Sales::Questions::LeaseholdCharges < ::Form::Question
def initialize(id, hsh, page)
super
@id = "mscharge"
@check_answer_label = "Monthly rent"
@header = "Enter the total monthly charge"
@type = "numeric"
@page = page
@width = 2
@prefix = "£"
@inferred_check_answers_value = {
"condition" => {
"mscharge_known" => 0,
},
"value" => 0,
}
end
end