class HealthDataStandards::Import::Cat1::LabResultImporter

Public Class Methods

new(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.40']")) click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/lab_result_importer.rb, line 5
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

Public Instance Methods

create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new) click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/lab_result_importer.rb, line 10
def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
  result = super
  result.end_time ||= result.start_time
  result
end