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.
33 lines
849 B
33 lines
849 B
class Form::Sales::Pages::Organisation < ::Form::Page |
|
def initialize(id, hsh, subsection) |
|
super |
|
@id = "organisation" |
|
end |
|
|
|
def questions |
|
@questions ||= [ |
|
Form::Sales::Questions::OwningOrganisationId.new(nil, nil, self), |
|
] |
|
end |
|
|
|
def routed_to?(_log, current_user) |
|
if FeatureToggle.merge_organisations_enabled? |
|
|
|
return false unless current_user |
|
return true if current_user.support? |
|
|
|
absorbed_stock_owners = current_user.organisation.absorbed_organisations.where(holds_own_stock: true) |
|
|
|
if current_user.organisation.holds_own_stock? |
|
return true if absorbed_stock_owners.count >= 1 |
|
else |
|
return false if absorbed_stock_owners.count.zero? |
|
return true if absorbed_stock_owners.count > 1 |
|
end |
|
|
|
false |
|
else |
|
!!current_user&.support? |
|
end |
|
end |
|
end
|
|
|