Sha256: d910c1c7b553379c354f2307fba9c2b152a0b411c4f3497f1cf30a04c676d9e2

Contents?: true

Size: 1.03 KB

Versions: 11

Compression:

Stored size: 1.03 KB

Contents

require_dependency "renalware/medications"

module Renalware
  module Medications
    class PrescriptionPresenter < DumbDelegator
      delegate :drug_types, to: :drug
      delegate :local_patient_id, :age, :sex, :current_modality, to: :patient, prefix: true

      def patient_name
        patient.to_s
      end

      def patient_current_modality_name
        return unless patient_current_modality
        patient_current_modality.description.to_s
      end

      def route_code
        medication_route.other? ? route_description : medication_route.code
      end

      def drug_type_names
        drug_types.map(&:name).join(", ")
      end

      def provider
        ::I18n.t(super, scope: "enums.provider")
      end

      def dose
        "#{dose_amount} #{translated_dose_unit}"
      end

      def administer_on_hd?
        administer_on_hd ? "Yes" : "No"
      end

      private

      def translated_dose_unit
        ::I18n.t(dose_unit, scope: "enumerize.renalware.medications.prescription.dose_unit")
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.rc11 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc10 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc9 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc8 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc7 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc6 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc5 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc4 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc3 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.rc1 app/presenters/renalware/medications/prescription_presenter.rb
renalware-core-2.0.0.pre.beta12 app/presenters/renalware/medications/prescription_presenter.rb