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.
|
|
|
class Form::Lettings::Questions::NationalityAll < ::Form::Question
|
|
|
|
def initialize(id, hsh, page)
|
|
|
|
super
|
|
|
|
@id = "nationality_all"
|
|
|
|
@check_answer_label = "Lead tenant’s nationality"
|
|
|
|
@header = "Enter a nationality"
|
|
|
|
@type = "select"
|
|
|
|
@check_answers_card_number = 1
|
|
|
|
@answer_options = GlobalConstants::COUNTRIES_ANSWER_OPTIONS
|
|
|
|
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
|
|
|
|
end
|
|
|
|
|
|
|
|
def answer_label(log, _current_user = nil)
|
|
|
|
answer_options[log.nationality_all.to_s]["name"]
|
|
|
|
end
|
|
|
|
|
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 36, 2024 => 35 }.freeze
|
|
|
|
end
|