Sha256: 2461c7514c1a6c7de7de8f43bb223f5391285d11b437ef7c37e5b818fa211bc7

Contents?: true

Size: 1021 Bytes

Versions: 104

Compression:

Stored size: 1021 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/pathology/requests"

module Renalware
  module Pathology
    module Requests
      class RequestFactory
        def initialize(patient, params)
          @patient = patient
          @params = params
        end

        def build
          Request.new(request_params)
        end

        private

        def request_params
          {
            patient: @patient,
            clinic: @params[:clinic],
            consultant: @params[:consultant],
            telephone: @params[:telephone],
            template: @params[:template],
            request_descriptions: request_descriptions,
            patient_rules: patient_rules,
            high_risk: @patient.high_risk?,
            by: @params[:by]
          }
        end

        def request_descriptions
          @patient.required_observation_requests(@params[:clinic])
        end

        def patient_rules
          @patient.required_patient_pathology
        end
      end
    end
  end
end

Version data entries

104 entries across 104 versions & 1 rubygems

Version Path
renalware-core-2.0.79 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.78 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.77 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.76 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.75 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.74 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.73 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.72 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.71 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.70 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.69 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.68 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.67 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.64 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.63 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.62 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.61 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.60 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.58 app/models/renalware/pathology/requests/request_factory.rb
renalware-core-2.0.57 app/models/renalware/pathology/requests/request_factory.rb