Class: HealthDataStandards::Import::Cat1::TransferFromImporter

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

Direct Known Subclasses

TransferFromActImporter

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.81']")) ⇒ TransferFromImporter

Returns a new instance of TransferFromImporter.



5
6
7
8
9
# File 'lib/health-data-standards/import/cat1/transfer_from_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.81']"))
  super(entry_finder)
  @time_xpath = ""
  @entry_class = Encounter
end

Instance Method Details

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



11
12
13
14
15
16
17
18
19
# File 'lib/health-data-standards/import/cat1/transfer_from_importer.rb', line 11

def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
  encounter = super
  transfer_time = HL7Helper.timestamp_to_integer(entry_element.at_xpath("./cda:participant/cda:time/cda:low")['value'])
  encounter[:start_time] = transfer_time
  encounter[:end_time] = transfer_time
  transfer_from_element = entry_element.at_xpath("./cda:participant[@typeCode='ORG']")
  extract_transfer(transfer_from_element, encounter)
  encounter
end