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.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							788 B
						
					
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							788 B
						
					
					
				class Form::Sales::Questions::HasLeaseholdCharges < ::Form::Question | 
						|
  def initialize(id, hsh, subsection, ownershipsch:) | 
						|
    super(id, hsh, subsection) | 
						|
    @id = "has_mscharge" | 
						|
    @copy_key = "sales.sale_information.leaseholdcharges.has_mscharge" | 
						|
    @type = "radio" | 
						|
    @answer_options = ANSWER_OPTIONS | 
						|
    @conditional_for = { | 
						|
      "mscharge" => [1], | 
						|
    } | 
						|
    @hidden_in_check_answers = { | 
						|
      "depends_on" => [ | 
						|
        { | 
						|
          "has_mscharge" => 1, | 
						|
        }, | 
						|
      ], | 
						|
    } | 
						|
    @ownershipsch = ownershipsch | 
						|
    @question_number = question_number | 
						|
  end | 
						|
 | 
						|
  ANSWER_OPTIONS = { | 
						|
    "1" => { "value" => "Yes" }, | 
						|
    "0" => { "value" => "No" }, | 
						|
  }.freeze | 
						|
 | 
						|
  def question_number | 
						|
    case @ownershipsch | 
						|
    when 1 | 
						|
      99 | 
						|
    when 2 | 
						|
      110 | 
						|
    when 3 | 
						|
      117 | 
						|
    end | 
						|
  end | 
						|
end
 | 
						|
 |