Sha256: b9a18c1afc8740deddd251d8704bd272ffb28b0b2b89d2eb7e650161c4c97eb7
Contents?: true
Size: 678 Bytes
Versions: 5
Compression:
Stored size: 678 Bytes
Contents
module HealthDataStandards module Import module Cat1 class DiagnosticStudyOrderImporter < CDA::SectionImporter def initialize(entry_finder=CDA::EntryFinder.new("//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
5 entries across 5 versions & 1 rubygems