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.
22 lines
676 B
22 lines
676 B
2 years ago
|
class Form::Lettings::Questions::Earnings < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "earnings"
|
||
|
@check_answer_label = "Total household income"
|
||
|
@header = "How much income does the household have in total?"
|
||
|
@type = "numeric"
|
||
|
@width = 5
|
||
|
@check_answers_card_number = 0
|
||
|
@min = 0
|
||
|
@guidance_partial = "what_counts_as_income"
|
||
|
@hint_text = ""
|
||
|
@step = 1
|
||
|
@prefix = "£"
|
||
|
@suffix = [
|
||
|
{ "label" => " every week", "depends_on" => { "incfreq" => 1 } },
|
||
|
{ "label" => " every month", "depends_on" => { "incfreq" => 2 } },
|
||
|
{ "label" => " every year", "depends_on" => { "incfreq" => 3 } },
|
||
|
]
|
||
|
end
|
||
|
end
|