Class: HealthDataStandards::Import::Cat1::ProcedurePerformedImporter

Inherits:
HealthDataStandards::Import::CDA::ProcedureImporter show all
Defined in:
lib/health-data-standards/import/cat1/procedure_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:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.64']")) ⇒ ProcedurePerformedImporter

Returns a new instance of ProcedurePerformedImporter.



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

def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.64']"))
  super(entry_finder)
  @incision_xpath ="./cda:entryRelationship/cda:procedure[./cda:templateId[@root='2.16.840.1.113883.10.20.24.3.89']]/cda:effectiveTime"
  @ordinality_xpath = "./cda:priorityCode | ./cda:entryRelationship/cda:observation[./cda:code[@code='260870009']]/cda:value"
end

Instance Method Details

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



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

def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
  procedure = super
  extract_incision_date_time(entry_element,procedure)
  procedure
end