Sha256: 7a3a6e49eb33047e9d37f28868afae904a07391695fbfdcd139e85b157cc5265

Contents?: true

Size: 894 Bytes

Versions: 16

Compression:

Stored size: 894 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

        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          procedure = super
          extract_reason_or_negation(entry_element, procedure)
          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

16 entries across 16 versions & 1 rubygems

Version Path
health-data-standards-4.3.5 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.3.4 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.3.3 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.3.2 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.3.1 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.3.0 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.2.0 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.1.0 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.6 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.5 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.4 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.3 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.2 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.1 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-4.0.0 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb
health-data-standards-3.7.0 lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb