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.
		
		
		
		
		
			
		
			
				
					
					
						
							38 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							38 lines
						
					
					
						
							1.4 KiB
						
					
					
				class Form::Lettings::Questions::Waityear < ::Form::Question | 
						|
  def initialize(id, hsh, page) | 
						|
    super | 
						|
    @id = "waityear" | 
						|
    @type = "radio" | 
						|
    @check_answers_card_number = 0 | 
						|
    @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] | 
						|
  end | 
						|
 | 
						|
  def answer_options | 
						|
    if form.start_year_2024_or_later? | 
						|
      { | 
						|
        "2" => { "value" => "Less than 1 year" }, | 
						|
        "7" => { "value" => "1 year but under 2 years" }, | 
						|
        "8" => { "value" => "2 years but under 3 years" }, | 
						|
        "9" => { "value" => "3 years but under 4 years" }, | 
						|
        "10" => { "value" => "4 years but under 5 years" }, | 
						|
        "11" => { "value" => "5 years but under 10 years" }, | 
						|
        "12" => { "value" => "10 years or more" }, | 
						|
        "divider" => { "value" => true }, | 
						|
        "6" => { "value" => "Don’t know" }, | 
						|
      }.freeze | 
						|
    else | 
						|
      { | 
						|
        "2" => { "value" => "Less than 1 year" }, | 
						|
        "7" => { "value" => "1 year but under 2 years" }, | 
						|
        "8" => { "value" => "2 years but under 3 years" }, | 
						|
        "9" => { "value" => "3 years but under 4 years" }, | 
						|
        "10" => { "value" => "4 years but under 5 years" }, | 
						|
        "5" => { "value" => "5 years or more" }, | 
						|
        "divider" => { "value" => true }, | 
						|
        "6" => { "value" => "Don’t know" }, | 
						|
      }.freeze | 
						|
    end | 
						|
  end | 
						|
 | 
						|
  QUESTION_NUMBER_FROM_YEAR = { 2023 => 76, 2024 => 75 }.freeze | 
						|
end
 | 
						|
 |