projectcypress/health-data-standards

View on GitHub
lib/health-data-standards/import/cat1/transfer_from_act_importer.rb

Summary

Maintainability
A
15 mins
Test Coverage
module HealthDataStandards
  module Import
    module Cat1
      class TransferFromActImporter < TransferFromImporter

        def initialize
          super(CDA::EntryFinder.new("./cda:entry/cda:act[./cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.141']/cda:entryRelationship/cda:encounter[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.81']"))
        end

        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          encounter = super
          extract_reason_or_negation(entry_element.parent.parent, encounter)
          encounter
        end
      end
    end
  end
end