Sha256: c15649872e95d440fdb72af829c912b49cee3d7883fe845b768982e015fc5917

Contents?: true

Size: 791 Bytes

Versions: 4

Compression:

Stored size: 791 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class LabOrderImporter < CDA::SectionImporter
        def initialize(entry_finder=CDA::EntryFinder.new("//cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.37']"))
          super(entry_finder)
          @entry_class = LabResult
        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/lab_order_importer.rb
health-data-standards-3.0.5 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.0.4 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.0.3 lib/health-data-standards/import/cat1/lab_order_importer.rb