Sha256: b09ced7238e2065340c63e6ae7f73f1b62dfa712f26433185e459bb3626cabe9

Contents?: true

Size: 677 Bytes

Versions: 23

Compression:

Stored size: 677 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class TobaccoUseImporter < CDA::SectionImporter
        def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.85']"))
          super(entry_finder)
          @entry_class = Entry
        end
        
        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          history = super
          codehash = extract_code(entry_element, "./cda:value")
          history.add_code(codehash['code'], CodeSystemHelper.code_system_for(codehash['codeSystemOid']))
          history
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
health-data-standards-3.5.0 lib/health-data-standards/import/cat1/tobacco_use_importer.rb
health-data-standards-3.4.6 lib/health-data-standards/import/cat1/tobacco_use_importer.rb
health-data-standards-3.4.5 lib/health-data-standards/import/cat1/tobacco_use_importer.rb