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.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							833 B
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							833 B
						
					
					
				| class Form::Sales::Pages::UprnSelection < ::Form::Page | |
|   def initialize(id, hsh, subsection) | |
|     super | |
|     @id = "uprn_selection" | |
|     @depends_on = [ | |
|       { "uprn_known" => nil, "address_options_present?" => true }, | |
|       { "uprn_known" => 0, "address_options_present?" => true }, | |
|       { "uprn_confirmed" => 0, "address_options_present?" => true }, | |
|     ] | |
|   end | |
|  | |
|   def questions | |
|     @questions ||= [ | |
|       Form::Sales::Questions::UprnSelection.new(nil, nil, self), | |
|     ] | |
|   end | |
|  | |
|   def routed_to?(log, _current_user = nil) | |
|     (log.uprn_known.nil? || log.uprn_known.zero?) && log.address_line1_input.present? && log.postcode_full_input.present? && (1..10).cover?(log.address_options&.count) | |
|   end | |
|  | |
|   def skip_text | |
|     "Search for address again" | |
|   end | |
|  | |
|   def skip_href(log = nil) | |
|     return unless log | |
|  | |
|     "address-matcher" | |
|   end | |
| end
 | |
| 
 |