Class: QRDA::Cat1::DiagnosticStudyPerformedImporter

Inherits:
SectionImporter show all
Defined in:
lib/qrda-import/data-element-importers/diagnostic_study_performed_importer.rb

Instance Attribute Summary

Attributes inherited from SectionImporter

#check_for_usable, #code_xpath, #codes, #codes_modifiers, #status_xpath, #warnings

Instance Method Summary collapse

Methods inherited from SectionImporter

#create_entries, #usable_entry?

Constructor Details

#initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.18']")) ⇒ DiagnosticStudyPerformedImporter

Returns a new instance of DiagnosticStudyPerformedImporter.



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/diagnostic_study_performed_importer.rb', line 4

def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.18']"))
  super(entry_finder)
  @id_xpath = './cda:id'
  @code_xpath = './cda:code'
  @relevant_period_xpath = "./cda:effectiveTime"
  @relevant_date_time_xpath = './cda:effectiveTime[@value]'
  @author_datetime_xpath = "./cda:author[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.155']/cda:time"
  @result_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.2']/cda:value"
  @result_datetime_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.2']/cda:effectiveTime"
  @status_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.93']/cda:value"
  @method_xpath = './cda:methodCode'
  @interpretation_xpath = './cda:interpretationCode'
  @facility_locations_xpath = "./cda:participant[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.100']"
  @components_xpath = "./cda:entryRelationship/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"
  @related_to_xpath = "./sdtc:inFulfillmentOf1/sdtc:actReference"
  @entry_class = QDM::DiagnosticStudyPerformed
end

Instance Method Details

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



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/qrda-import/data-element-importers/diagnostic_study_performed_importer.rb', line 23

def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
  diagnostic_study_performed = super
  diagnostic_study_performed.resultDatetime = extract_time(entry_element, @result_datetime_xpath)
  diagnostic_study_performed.resultDatetime ||= extract_interval(entry_element, @result_datetime_xpath)&.low
  diagnostic_study_performed.status = code_if_present(entry_element.at_xpath(@status_xpath))
  diagnostic_study_performed.method = code_if_present(entry_element.at_xpath(@method_xpath))
  diagnostic_study_performed.interpretation = code_if_present(entry_element.at_xpath(@interpretation_xpath))
  diagnostic_study_performed.facilityLocation = extract_facility_locations(entry_element)[0]
  diagnostic_study_performed.components = extract_components(entry_element)
  diagnostic_study_performed.reason = extract_reason(entry_element)
  entity = extract_entity(entry_element, "./cda:participant[@typeCode='PRF']")
  diagnostic_study_performed.performer.concat(entity) if entity
  diagnostic_study_performed.relatedTo = extract_related_to(entry_element)
  diagnostic_study_performed
end