class QRDA::Cat1::RelatedPersonImporter

Public Class Methods

new(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.170']")) click to toggle source
Calls superclass method QRDA::Cat1::SectionImporter::new
# File lib/qrda-import/data-element-importers/related_person_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.170']"))
  super(entry_finder)
  @id_xpath = './cda:id'
  @code_xpath = "./cda:value"
  @entry_class = QDM::RelatedPerson
end

Public Instance Methods

create_entry(entry_element, nrh = NarrativeReferenceHandler.new) click to toggle source
# File lib/qrda-import/data-element-importers/related_person_importer.rb, line 11
def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
  related_person = super
  related_person.identifier = extract_id(entry_element, './cda:participant/cda:participantRole/cda:id')
  related_person
end