Sha256: 9c31ceffdbbcb0af00985bd2a40923b93afd5e193defda7497817834d49aaf76

Contents?: true

Size: 803 Bytes

Versions: 4

Compression:

Stored size: 803 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
        
        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          super
        end

        private

        def extract_dates(parent_element, entry, element_name="author")
          if parent_element.at_xpath("cda:#{element_name}/cda:time/@value")
            entry.start_time = HL7Helper.timestamp_to_integer(parent_element.at_xpath("cda:#{element_name}/cda:time")['value'])
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
health-data-standards-3.0.6 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-3.0.5 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-3.0.4 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-3.0.3 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb