Sha256: 0203cc7e38c0ac05a8b9923c69c0e60ed8a27e315aacb74b502beda26e738778
Contents?: true
Size: 1.11 KB
Versions: 10
Compression:
Stored size: 1.11 KB
Contents
module QRDA module Cat1 class ProcedureOrderImporter < SectionImporter def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.63']")) super(entry_finder) @id_xpath = './cda:id' @code_xpath = './cda:code' @author_datetime_xpath = "./cda:author/cda:time" @anatomical_location_site_xpath = "./cda:targetSiteCode" @ordinality_xpath = "./cda:priorityCode" @reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value" @entry_class = QDM::ProcedureOrder end def create_entry(entry_element, nrh = NarrativeReferenceHandler.new) procedure_order = super procedure_order.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath)) procedure_order.ordinality = code_if_present(entry_element.at_xpath(@ordinality_xpath)) procedure_order.reason = extract_reason(entry_element) procedure_order end end end end
Version data entries
10 entries across 10 versions & 1 rubygems