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
774 B
33 lines
774 B
2 years ago
|
class Form::Lettings::Pages::StockOwner < ::Form::Page
|
||
2 years ago
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
2 years ago
|
@id = "stock_owner"
|
||
2 years ago
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [
|
||
2 years ago
|
Form::Lettings::Questions::StockOwner.new(nil, nil, self),
|
||
2 years ago
|
]
|
||
|
end
|
||
|
|
||
|
def routed_to?(log, current_user)
|
||
|
return false unless current_user
|
||
|
return true if current_user.support?
|
||
|
|
||
2 years ago
|
stock_owners = current_user.organisation.stock_owners
|
||
2 years ago
|
|
||
2 years ago
|
if current_user.organisation.holds_own_stock?
|
||
2 years ago
|
return true if stock_owners.count >= 1
|
||
2 years ago
|
|
||
|
log.update!(owning_organisation: current_user.organisation)
|
||
|
else
|
||
2 years ago
|
return false if stock_owners.count.zero?
|
||
|
return true if stock_owners.count > 1
|
||
2 years ago
|
|
||
2 years ago
|
log.update!(owning_organisation: stock_owners.first)
|
||
2 years ago
|
end
|
||
2 years ago
|
|
||
|
false
|
||
|
end
|
||
|
end
|