Class: HealthDataStandards::Import::Cat1::DeviceOrderImporter

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

#extract_anatomical_structure, #extract_manufacturer, #extract_removal_time

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

#create_entries

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

#import_address, #import_telecom

Constructor Details

#initializeDeviceOrderImporter

Returns a new instance of DeviceOrderImporter.



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

def initialize
  super(CDA::EntryFinder.new("//cda:act[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.130']/cda:entryRelationship/cda:supply[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.9']"))
end

Instance Method Details

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



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

def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
  medical_equipment = super
  # the negation is at the level of the encapsulating Device Order Act Template (parent.parent)
  extract_reason_or_negation(entry_element.parent.parent, medical_equipment, entry_element)
  medical_equipment
end