Sha256: db2ec30afd23abaf794134a7a166d8314a486f66b3d66aa11c2cb6fcfcccc49f

Contents?: true

Size: 668 Bytes

Versions: 20

Compression:

Stored size: 668 Bytes

Contents

require_dependency "renalware/pathology/requests"

module Renalware
  module Pathology
    module Requests
      class RequestQuery
        attr_reader :requests, :query

        def initialize(q = {})
          @q = q
          @q[:s] = "created_at DESC" if @q[:s].blank?
        end

        def call
          search.result.includes(:patient, :clinic, :consultant)
        end

        def search
          @search ||= QueryableRequest.ransack(@q)
        end

        class QueryableRequest < ActiveType::Record[Request]
          ransacker :created_on, type: :date do
            Arel.sql("DATE(created_at)")
          end
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
renalware-core-2.0.8 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.7 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.5 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.4 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.3 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.2 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.1 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc13 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc11 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc10 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc9 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc8 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc7 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc6 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc5 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc4 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc3 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.rc1 app/models/renalware/pathology/requests/request_query.rb
renalware-core-2.0.0.pre.beta12 app/models/renalware/pathology/requests/request_query.rb