Sha256: f4ceec129d83ba830cbae0ee6bd00a83a07ba3456e8529117a7ad7ff34f50935
Contents?: true
Size: 995 Bytes
Versions: 4
Compression:
Stored size: 995 Bytes
Contents
module QRDA module Cat1 class AssessmentPerformedImporter < SectionImporter def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.144']")) super(entry_finder) @id_xpath = './cda:id' @code_xpath = './cda:code' @author_datetime_xpath = "./cda:author/cda:time" @result_xpath = "./cda:value" @method_xpath = './cda:methodCode' @components_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.149']" @entry_class = QDM::AssessmentPerformed end def create_entry(entry_element, nrh = NarrativeReferenceHandler.new) assessment_performed = super assessment_performed.method = code_if_present(entry_element.at_xpath(@method_xpath)) assessment_performed.components = extract_components(entry_element) assessment_performed end end end end
Version data entries
4 entries across 4 versions & 2 rubygems