|
|
|
class Organisation < ApplicationRecord
|
|
|
|
has_many :users
|
|
|
|
has_many :owned_case_logs, class_name: "CaseLog", foreign_key: "owning_organisation_id"
|
|
|
|
has_many :managed_case_logs, class_name: "CaseLog", foreign_key: "managing_organisation_id"
|
|
|
|
has_many :data_protection_confirmations
|
|
|
|
has_many :organisation_rent_periods
|
|
|
|
has_many :owned_schemes, class_name: "Scheme", foreign_key: "stock_owning_organisation_id"
|
|
|
|
has_many :managed_schemes, class_name: "Scheme"
|
|
|
|
|
|
|
|
scope :search_by_name, ->(name) { where("name ILIKE ?", "%#{name}%") }
|
|
|
|
scope :search_by, ->(param) { search_by_name(param) }
|
|
|
|
|
|
|
|
has_paper_trail
|
|
|
|
|
|
|
|
PROVIDER_TYPE = {
|
|
|
|
LA: 1,
|
|
|
|
PRP: 2,
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
enum provider_type: PROVIDER_TYPE
|
|
|
|
|
|
|
|
validates :name, presence: { message: I18n.t("validations.organisation.name_missing") }
|
|
|
|
validates :provider_type, presence: { message: I18n.t("validations.organisation.provider_type_missing") }
|
|
|
|
|
|
|
|
def case_logs
|
|
|
|
CaseLog.filter_by_organisation(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def completed_case_logs
|
|
|
|
case_logs.completed
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_completed_case_logs
|
|
|
|
case_logs.not_completed
|
|
|
|
end
|
|
|
|
|
|
|
|
def address_string
|
|
|
|
%i[address_line1 address_line2 postcode].map { |field| public_send(field) }.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def rent_periods
|
|
|
|
organisation_rent_periods.pluck(:rent_period)
|
|
|
|
end
|
|
|
|
|
|
|
|
def rent_period_labels
|
|
|
|
labels = rent_periods.map { |period| RentPeriod.rent_period_mappings[period.to_s]["value"] }
|
|
|
|
labels.presence || %w[All]
|
|
|
|
end
|
|
|
|
|
|
|
|
def data_protection_confirmed?
|
|
|
|
!!data_protection_confirmations.order(created_at: :desc).first&.confirmed
|
|
|
|
end
|
|
|
|
|
|
|
|
def data_protection_agreement_string
|
|
|
|
data_protection_confirmed? ? "Accepted" : "Not accepted"
|
|
|
|
end
|
|
|
|
|
|
|
|
DISPLAY_PROVIDER_TYPE = { "LA": "Local authority", "PRP": "Private registered provider" }.freeze
|
|
|
|
|
|
|
|
def display_provider_type
|
|
|
|
DISPLAY_PROVIDER_TYPE[provider_type.to_sym]
|
|
|
|
end
|
|
|
|
|
|
|
|
def display_attributes
|
|
|
|
[
|
|
|
|
{ name: "name", value: name, editable: true },
|
|
|
|
{ name: "address", value: address_string, editable: true },
|
|
|
|
{ name: "telephone_number", value: phone, editable: true },
|
|
|
|
{ name: "type", value: display_provider_type, editable: false },
|
|
|
|
{ name: "rent_periods", value: rent_period_labels, editable: false, format: :bullet },
|
|
|
|
{ name: "Owns housing stock", value: holds_own_stock ? "Yes" : "No", editable: false },
|
|
|
|
{ name: "other_stock_owners", value: other_stock_owners, editable: false },
|
|
|
|
{ name: "managing_agents", value: managing_agents, editable: false },
|
|
|
|
{ name: "data_protection_agreement", value: data_protection_agreement_string, editable: false },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|