Sha256: 4c454cd926aea9858a2bb1e28b6e61c664c65f22d894725b2ed86d5546c73b60

Contents?: true

Size: 548 Bytes

Versions: 23

Compression:

Stored size: 548 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class LabResultImporter < 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.40']"))
          super(entry_finder)
          @entry_class = LabResult
        end

        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          result = super
          result.end_time ||= result.start_time
          result
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
health-data-standards-3.5.0 lib/health-data-standards/import/cat1/lab_result_importer.rb
health-data-standards-3.4.6 lib/health-data-standards/import/cat1/lab_result_importer.rb
health-data-standards-3.4.5 lib/health-data-standards/import/cat1/lab_result_importer.rb