Sha256: bc414a87776a7962337f88e7c3d4784f6462325f0803ddf89369bc98c83a23d6

Contents?: true

Size: 605 Bytes

Versions: 4

Compression:

Stored size: 605 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class DiagnosisInactiveImporter < CDA::ConditionImporter

        def initialize
          super(CDA::EntryFinder.new("//cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.13']"))
          @status_xpath = nil # We'll hardcode this to active in create entry because this is from the 
                              # diagnosis active template
        end

        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          condition = super
          condition
        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/diagnosis_inactive_importer.rb
health-data-standards-3.0.5 lib/health-data-standards/import/cat1/diagnosis_inactive_importer.rb
health-data-standards-3.0.4 lib/health-data-standards/import/cat1/diagnosis_inactive_importer.rb
health-data-standards-3.0.3 lib/health-data-standards/import/cat1/diagnosis_inactive_importer.rb