Method: QRDA::Cat1::ProcedurePerformedImporter#initialize

Defined in:
lib/qrda-import/data-element-importers/procedure_performed_importer.rb

#initialize(entry_finder = QRDA::Cat1::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.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/qrda-import/data-element-importers/procedure_performed_importer.rb', line 4

def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.64']"))
  super(entry_finder)
  @id_xpath = './cda:id'
  @code_xpath = "./cda:code"
  @relevant_period_xpath = "./cda:effectiveTime"
  @relevant_date_time_xpath = './cda:effectiveTime'
  @author_datetime_xpath = "./cda:author[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.155']/cda:time"
  @method_xpath = './cda:methodCode'
  @result_xpath = "./cda:entryRelationship[@typeCode='REFR']/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.2']/cda:value"
  @status_xpath = "./cda:entryRelationship[@typeCode='REFR']/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.93']/cda:value"
  @anatomical_location_site_xpath = "./cda:targetSiteCode"
  @incision_datetime_xpath = "./cda:entryRelationship[@typeCode='REFR']/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.89']/cda:effectiveTime"
  @components_xpath = "./cda:entryRelationship[@typeCode='REFR']/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.149']"
  @reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
  @rank_xpath = "./cda:entryRelationship[@typeCode='REFR']/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.166']/cda:value/@value"
  @related_to_xpath = "./sdtc:inFulfillmentOf1/sdtc:actReference"
  @entry_class = QDM::ProcedurePerformed
end