Sha256: 973a6bfa7512463015a46f3aa2de63d9c3683e90726ee26c42d57810c2ca963c
Contents?: true
Size: 592 Bytes
Versions: 149
Compression:
Stored size: 592 Bytes
Contents
# frozen_string_literal: true require "renalware/letters/part" # Decorates an a Clinical::Patient so we can access patient.allergies in the view module Renalware module Letters class Part::Allergies < SimpleDelegator attr_reader :allergy_status def initialize(patient, _letter, _event = Event::Unknown.new) patient = ::Renalware::Clinical.cast_patient(patient.__getobj__) @allergy_status = patient.allergy_status super(patient.allergies) end def to_partial_path "renalware/letters/parts/allergies" end end end end
Version data entries
149 entries across 149 versions & 1 rubygems