Class: HealthDataStandards::Import::Cat1::EncounterPerformedImporter

Inherits:
HealthDataStandards::Import::CDA::EncounterImporter show all
Defined in:
lib/health-data-standards/import/cat1/encounter_performed_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

#initialize(entry_finder = CDA::EntryFinder.new("./cda:entry/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.23']")) ⇒ EncounterPerformedImporter

Returns a new instance of EncounterPerformedImporter.



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

def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.23']"))
  super(entry_finder)
  @reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation"
end

Instance Method Details

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



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

def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
  encounter = super
  extract_admit_time(entry_element, encounter)
  extract_reason(entry_element, encounter, nrh)
  encounter
end