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.
 
 
 
 

14 lines
807 B

class Form::Lettings::Questions::Period < ::Form::Question
def initialize(id, hsh, page)
super
@id = "period"
@check_answer_label = "Frequency of household rent and charges"
@header = "How often does the household pay rent and other charges?"
@type = "radio"
@check_answers_card_number = 0
@hint_text = ""
@answer_options = ANSWER_OPTIONS
end
ANSWER_OPTIONS = { "2" => { "value" => "Every 2 weeks" }, "3" => { "value" => "Every 4 weeks" }, "4" => { "value" => "Every calendar month" }, "5" => { "value" => "Weekly for 50 weeks" }, "6" => { "value" => "Weekly for 49 weeks" }, "7" => { "value" => "Weekly for 48 weeks" }, "8" => { "value" => "Weekly for 47 weeks" }, "9" => { "value" => "Weekly for 46 weeks" }, "1" => { "value" => "Weekly for 52 weeks" } }.freeze
end