class HealthDataStandards::Import::Cat1::TobaccoUseImporter
Public Class Methods
new(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.85']"))
click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/tobacco_use_importer.rb, line 5 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
Public Instance Methods
create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/tobacco_use_importer.rb, line 10 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