Sha256: b8937986b283af745813bc7d49587dc74fa0eb46bfaaaa734425789a7f421dce

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

module QRDA
  module Cat1
    class AllergyIntoleranceImporter < SectionImporter
      def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.147']"))
        super(entry_finder)
        @id_xpath = './cda:id'
        @code_xpath = "./cda:participant[@typeCode='CSM']/cda:participantRole/cda:playingEntity/cda:code"
        @author_datetime_xpath = "./cda:author[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.155']/cda:time"
        @prevalence_period_xpath = "./cda:effectiveTime"
        @severity_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.8']/cda:value"
        @type_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.9']/cda:value"
        @entry_class = QDM::AllergyIntolerance
      end

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        allergy_intolerance = super
        allergy_intolerance.severity = code_if_present(entry_element.at_xpath(@severity_xpath))
        allergy_intolerance.type = code_if_present(entry_element.at_xpath(@type_xpath))
        entity = extract_entity(entry_element, "./cda:participant[@typeCode='PRF']")
        allergy_intolerance.recorder.concat(entity) if entity
        allergy_intolerance
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cqm-reports-4.1.3 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb
cqm-reports-4.1.2 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb
cqm-reports-4.1.1 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb
cqm-reports-4.1.0 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb
cqm-reports-4.0.1 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb
cqm-reports-4.0.0 lib/qrda-import/data-element-importers/allergy_intolerance_importer.rb