Sha256: fdc56ce20d33afd27afefeca67902ec5d3cad113a051f5fdacf315121becf2ab

Contents?: true

Size: 1.35 KB

Versions: 12

Compression:

Stored size: 1.35 KB

Contents

module QRDA
  module Cat1
    class AdverseEventImporter < 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.146']"))
        super(entry_finder)
        @id_xpath = './cda:id'
        @code_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.148']/cda:value"
        @author_datetime_xpath = './cda:author/cda:time'
        @relevant_period_xpath = './cda:effectiveTime'
        @facility_locations_xpath = "./cda:participant[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.100']"
        @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::AdverseEvent
      end

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        adverse_event = super
        adverse_event.severity = code_if_present(entry_element.at_xpath(@severity_xpath))
        adverse_event.type = code_if_present(entry_element.at_xpath(@type_xpath))
        adverse_event.facilityLocation = extract_facility_locations(entry_element)[0]
        adverse_event
      end

    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cqm-reports-2.1.1 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.1.0 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.8 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.7 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.6 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.5 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.4 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.3 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.2 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.1 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-2.0.0 lib/qrda-import/data-element-importers/adverse_event_importer.rb
cqm-reports-1.0.0.0 lib/qrda-import/data-element-importers/adverse_event_importer.rb