Class: HealthDataStandards::Import::CDA::MedicalEquipmentImporter

Inherits:
SectionImporter
  • Object
show all
Defined in:
lib/health-data-standards/import/cda/medical_equipment_importer.rb

Instance Attribute Summary

Attributes inherited from SectionImporter

#check_for_usable, #code_xpath, #status_xpath

Instance Method Summary collapse

Methods inherited from SectionImporter

#create_entries

Methods included from LocatableImportUtils

#import_address, #import_telecom

Constructor Details

#initialize(entry_finder = EntryFinder.new("//cda:section[cda:templateId/@root='2.16.840.1.113883.3.88.11.83.128']/cda:entry/cda:supply")) ⇒ MedicalEquipmentImporter

Returns a new instance of MedicalEquipmentImporter.



5
6
7
8
9
# File 'lib/health-data-standards/import/cda/medical_equipment_importer.rb', line 5

def initialize(entry_finder=EntryFinder.new("//cda:section[cda:templateId/@root='2.16.840.1.113883.3.88.11.83.128']/cda:entry/cda:supply"))
  super(entry_finder)
  @code_xpath = "./cda:participant/cda:participantRole/cda:playingDevice/cda:code"
  @entry_class = MedicalEquipment
end

Instance Method Details

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



11
12
13
14
15
# File 'lib/health-data-standards/import/cda/medical_equipment_importer.rb', line 11

def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
  medical_equipment = super
  extract_manufacturer(entry_element, medical_equipment)
  medical_equipment
end

#extract_manufacturer(entry_element, entry) ⇒ Object



17
18
19
20
# File 'lib/health-data-standards/import/cda/medical_equipment_importer.rb', line 17

def extract_manufacturer(entry_element, entry)
  manufacturer = entry_element.at_xpath("./cda:participant/cda:participantRole/cda:scopingEntity/cda:desc").try(:inner_text)
  entry.manufacturer = manufacturer.strip if manufacturer
end