Class: HealthDataStandards::Import::Cat1::MedicationSubstanceAdministeredImporter

Inherits:
HealthDataStandards::Import::CDA::MedicationImporter show all
Defined in:
lib/health-data-standards/import/cat1/medication_substance_administered_importer.rb

Instance Attribute Summary

Attributes inherited from HealthDataStandards::Import::CDA::SectionImporter

#check_for_usable, #code_xpath, #status_xpath

Instance Method Summary collapse

Methods inherited from HealthDataStandards::Import::CDA::SectionImporter

#create_entries

Methods included from HealthDataStandards::Import::CDA::LocatableImportUtils

#import_address, #import_telecom

Constructor Details

#initializeMedicationSubstanceAdministeredImporter

Returns a new instance of MedicationSubstanceAdministeredImporter.



6
7
8
# File 'lib/health-data-standards/import/cat1/medication_substance_administered_importer.rb', line 6

def initialize
  super(CDA::EntryFinder.new("./cda:entry/cda:substanceAdministration[cda:templateId/@root='2.16.840.1.113883.10.20.22.4.16']"))
end

Instance Method Details

#create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new) ⇒ Object



10
11
12
13
14
# File 'lib/health-data-standards/import/cat1/medication_substance_administered_importer.rb', line 10

def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
  medication = super
  medication.start_time = medication.time unless medication.start_time
  medication
end