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.
		
		
		
		
		
			
		
			
				
					
					
						
							76 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
	
	
							76 lines
						
					
					
						
							2.4 KiB
						
					
					
				| class Form::Sales::Questions::ManagingOrganisation < ::Form::Question | |
|   def initialize(id, hsh, page) | |
|     super | |
|     @id = "managing_organisation_id" | |
|     @derived = true | |
|     @type = "select" | |
|     @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max] | |
|   end | |
|  | |
|   def answer_options(log = nil, user = nil) | |
|     opts = { "" => "Select an option" } | |
|  | |
|     return opts unless ActiveRecord::Base.connected? | |
|     return opts unless user | |
|     return opts unless log | |
|  | |
|     if log.managing_organisation.present? | |
|       org_value = log.managing_organisation.label | |
|       opts = opts.merge({ log.managing_organisation.id => org_value }) | |
|     end | |
|  | |
|     if user.support? | |
|       if log.owning_organisation.holds_own_stock? | |
|         opts[log.owning_organisation.id] = "#{log.owning_organisation.name} (Owning organisation)" | |
|       end | |
|     elsif user.organisation.absorbed_organisations.exists? && user.organisation.available_from.present? | |
|       opts[user.organisation.id] = "#{user.organisation.name} (Your organisation, active as of #{user.organisation.available_from.to_fs(:govuk_date)})" | |
|     else | |
|       opts[user.organisation.id] = "#{user.organisation.name} (Your organisation)" | |
|     end | |
|  | |
|     orgs = if user.support? | |
|              log.owning_organisation.managing_agents.visible.filter_by_active | |
|            elsif user.organisation.absorbed_organisations.include?(log.owning_organisation) | |
|              user.organisation.managing_agents.visible.filter_by_active + log.owning_organisation.managing_agents.visible.filter_by_active | |
|            else | |
|              user.organisation.managing_agents.visible.filter_by_active | |
|            end.pluck(:id, :name).to_h | |
|  | |
|     user.organisation.absorbed_organisations.visible.each do |absorbed_org| | |
|       opts[absorbed_org.id] = "#{absorbed_org.name} (inactive as of #{absorbed_org.merge_date.to_fs(:govuk_date)})" | |
|     end | |
|  | |
|     opts.merge(orgs) | |
|   end | |
|  | |
|   def displayed_answer_options(log, user) | |
|     answer_options(log, user) | |
|   end | |
|  | |
|   def label_from_value(value, _log = nil, _user = nil) | |
|     return unless value | |
|  | |
|     answer_options[value] | |
|   end | |
|  | |
|   def hidden_in_check_answers?(log, user = nil) | |
|     user.nil? || !@page.routed_to?(log, user) | |
|   end | |
|  | |
|   def enabled | |
|     true | |
|   end | |
|  | |
|   def answer_label(log, _current_user = nil) | |
|     Organisation.find_by(id: log.managing_organisation_id)&.name | |
|   end | |
|  | |
| private | |
|  | |
|   def selected_answer_option_is_derived?(_log) | |
|     true | |
|   end | |
|  | |
|   QUESTION_NUMBER_FROM_YEAR = { 2024 => 2 }.freeze | |
| end
 | |
| 
 |