Sha256: 7225254ea3de870f465ea5e9b9578061b8f4e57ff12a111e42bd87c3826dc209

Contents?: true

Size: 811 Bytes

Versions: 114

Compression:

Stored size: 811 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/hd"

module Renalware
  module HD
    class PatientsDialysingByScheduleQuery
      attr_reader :hospital_unit_id, :schedule_definition_ids

      def initialize(hospital_unit_id, schedule_definition_ids)
        @hospital_unit_id = hospital_unit_id
        @schedule_definition_ids = Array(schedule_definition_ids)
      end

      def call
        return [] if schedule_definition_ids.empty?

        Patient
          .eager_load(hd_profile: [:hospital_unit, { schedule_definition: [:diurnal_period] }])
          .where(
            hd_profiles: {
              schedule_definition_id: schedule_definition_ids,
              hospital_unit_id: hospital_unit_id
            })
          .order(:family_name, :given_name)
      end
    end
  end
end

Version data entries

114 entries across 114 versions & 1 rubygems

Version Path
renalware-core-2.0.104 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.103 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.102 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.101 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.100 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.99 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.98 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.97 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.96 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.95 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.94 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.93 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.92 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.91 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.90 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.89 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.88 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.87 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.86 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb
renalware-core-2.0.85 app/models/renalware/hd/patients_dialysing_by_schedule_query.rb