Sha256: 16cc10e0d738f649c9d9a7cab3defa4a72daac02a153f3bf1fa5831654dd264d

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

module QRDA
  module Cat1
    class FamilyHistoryImporter < SectionImporter
      def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:organizer[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.12']"))
        super(entry_finder)
        @id_xpath = './cda:id'
        @code_xpath = "./cda:component/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.112']/cda:value"
        @author_datetime_xpath = "./cda:component/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.112']/cda:author/cda:time"
        @relationship_xpath = './cda:subject/cda:relatedSubject/cda:code'
        @entry_class = QDM::FamilyHistory
      end

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        family_history = super
        family_history.relationship = code_if_present(entry_element.at_xpath(@relationship_xpath))
        family_history.recorder = extract_entity(entry_element, "./cda:component/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.112']//cda:participant[@typeCode='PRF']")
        family_history
      end

    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cqm-reports-3.1.5 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.1.4 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.1.3 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.1.2 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.1.1 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.1.0 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.0.1 lib/qrda-import/data-element-importers/family_history_importer.rb
cqm-reports-3.0.0 lib/qrda-import/data-element-importers/family_history_importer.rb