Sha256: 952549fa5902a6159c38d438a7abbeb993b9e0ba8102333eeaf6da1a427cdf1e
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
module QRDA module Cat1 class EncounterOrderImporter < SectionImporter def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:act[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.132']")) super(entry_finder) @code_xpath = "./cda:entryRelationship/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.22']/cda:code" @author_datetime_xpath = "./cda:entryRelationship/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.22']/cda:author/cda:time" @facility_location_xpath = "./cda:entryRelationship/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.22']/cda:participant[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.100']/cda:participantRole[@classCode='SDLOC']/cda:code" @entry_class = QDM::EncounterOrder end def create_entry(entry_element, nrh = NarrativeReferenceHandler.new) encounter_order = super encounter_order.facilityLocation = code_if_present(entry_element.at_xpath(@facility_location_xpath)) encounter_order end end end end
Version data entries
3 entries across 3 versions & 1 rubygems