Sha256: 3573f95287ba69a0bd435ca1ea48f38078117bb4ceaabe0bdc2d6f76ca882059
Contents?: true
Size: 688 Bytes
Versions: 7
Compression:
Stored size: 688 Bytes
Contents
module HealthDataStandards module Import module Cat1 class DiagnosticStudyOrderImporter < CDA::SectionImporter def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.17']")) super(entry_finder) @entry_class = Procedure end private def extract_dates(parent_element, entry, element_name="author") if parent_element.at_xpath("cda:#{element_name}/cda:time/@value") entry.time = HL7Helper.timestamp_to_integer(parent_element.at_xpath("cda:#{element_name}/cda:time")['value']) end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems