Sha256: c75aa0e3dadbe0b1517b04a7f79127db679dbed1a32d75d51fb0d69e17dff844

Contents?: true

Size: 684 Bytes

Versions: 23

Compression:

Stored size: 684 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class LabOrderImporter < CDA::SectionImporter
        def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.37']"))
          super(entry_finder)
          @entry_class = LabResult
        end
        
        private

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

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
health-data-standards-4.3.5 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.3.4 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.3.3 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.3.2 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.3.1 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.3.0 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.2.0 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.1.0 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.6 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.5 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.4 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.3 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.2 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.1 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-4.0.0 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.7.0 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.6.1 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.5.3 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.5.2 lib/health-data-standards/import/cat1/lab_order_importer.rb
health-data-standards-3.5.1 lib/health-data-standards/import/cat1/lab_order_importer.rb