Sha256: 27b7edef45b1efb3f731106bbc1504065ffc4de0fca9f0769ecde70cc7ae4bfc

Contents?: true

Size: 797 Bytes

Versions: 4

Compression:

Stored size: 797 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class EncounterOrderImporter < CDA::EncounterImporter
        def initialize(entry_finder=CDA::EntryFinder.new("//cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.22']"))
          super(entry_finder)
          @entry_class = Encounter
        end
        
        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          super
        end

        private

        def extract_dates(parent_element, entry, element_name="author")
          if parent_element.at_xpath("cda:#{element_name}/cda:time/@value")
            entry.start_time = HL7Helper.timestamp_to_integer(parent_element.at_xpath("cda:#{element_name}/cda:time")['value'])
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
health-data-standards-3.0.6 lib/health-data-standards/import/cat1/encounter_order_importer.rb
health-data-standards-3.0.5 lib/health-data-standards/import/cat1/encounter_order_importer.rb
health-data-standards-3.0.4 lib/health-data-standards/import/cat1/encounter_order_importer.rb
health-data-standards-3.0.3 lib/health-data-standards/import/cat1/encounter_order_importer.rb