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.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							903 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							903 B
						
					
					
				class Form::Sales::Pages::GrantValueCheck < ::Form::Page | 
						|
  def initialize(id, hsh, subsection) | 
						|
    super | 
						|
    @id = "grant_value_check" | 
						|
    @copy_key = "sales.soft_validations.grant_value_check" | 
						|
    @depends_on = [ | 
						|
      { | 
						|
        "grant_outside_common_range?" => true, | 
						|
      }, | 
						|
    ] | 
						|
    @title_text = { | 
						|
      "translation" => "forms.#{form.start_date.year}.#{@copy_key}.title_text", | 
						|
      "arguments" => [ | 
						|
        { | 
						|
          "key" => "field_formatted_as_currency", | 
						|
          "arguments_for_key" => "grant", | 
						|
          "i18n_template" => "grant", | 
						|
        }, | 
						|
      ], | 
						|
    } | 
						|
    @informative_text = { | 
						|
      "translation" => "forms.#{form.start_date.year}.#{@copy_key}.informative_text", | 
						|
      "arguments" => [], | 
						|
    } | 
						|
  end | 
						|
 | 
						|
  def questions | 
						|
    @questions ||= [ | 
						|
      Form::Sales::Questions::GrantValueCheck.new(nil, nil, self), | 
						|
    ] | 
						|
  end | 
						|
 | 
						|
  def interruption_screen_question_ids | 
						|
    %w[grant] | 
						|
  end | 
						|
end
 | 
						|
 |