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.
69 lines
1.6 KiB
69 lines
1.6 KiB
class Form::Lettings::Questions::ManagingOrganisation < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "managing_organisation_id" |
|
@check_answer_label = "Managing agent" |
|
@header = "Which organisation manages this letting?" |
|
@type = "select" |
|
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? |
|
opts = opts.merge({ log.managing_organisation.id => log.managing_organisation.name }) |
|
end |
|
|
|
if user.support? |
|
if log.owning_organisation.holds_own_stock? |
|
opts[log.owning_organisation.id] = "#{log.owning_organisation.name} (Owning organisation)" |
|
end |
|
else |
|
opts[user.organisation.id] = "#{user.organisation.name} (Your organisation)" |
|
end |
|
|
|
orgs = if user.support? |
|
log.owning_organisation |
|
else |
|
user.organisation |
|
end.managing_agents.pluck(:id, :name).to_h |
|
|
|
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 derived? |
|
true |
|
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 |
|
end
|
|
|