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.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							1.2 KiB
						
					
					
				class Form::Sales::Questions::BuyersOrganisations < ::Form::Question | 
						|
  def initialize(id, hsh, page) | 
						|
    super | 
						|
    @id = "buyers_organisations" | 
						|
    @type = "checkbox" | 
						|
    @answer_options = ANSWER_OPTIONS | 
						|
    @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] | 
						|
  end | 
						|
 | 
						|
  ANSWER_OPTIONS = { | 
						|
    "pregyrha" => { "value" => "Their private registered provider (PRP) - housing association" }, | 
						|
    "pregother" => { "value" => "Other private registered provider (PRP) - housing association" }, | 
						|
    "pregla" => { "value" => "Local Authority" }, | 
						|
    "pregghb" => { "value" => "Help to Buy Agent" }, | 
						|
    "pregblank" => { "value" => "None of the above" }, | 
						|
  }.freeze | 
						|
 | 
						|
  def displayed_answer_options(_log, _user = nil) | 
						|
    { | 
						|
      "pregyrha" => { "value" => "Their private registered provider (PRP) - housing association" }, | 
						|
      "pregother" => { "value" => "Other private registered provider (PRP) - housing association" }, | 
						|
      "pregla" => { "value" => "Local Authority" }, | 
						|
      "pregghb" => { "value" => "Help to Buy Agent" }, | 
						|
    } | 
						|
  end | 
						|
 | 
						|
  QUESTION_NUMBER_FROM_YEAR = { 2023 => 59, 2024 => 61 }.freeze | 
						|
end
 | 
						|
 |