Sha256: 40e0bab58b7ab1fd38222201f9b36213f2047875b290037d4a55987fcfb369e2

Contents?: true

Size: 672 Bytes

Versions: 1

Compression:

Stored size: 672 Bytes

Contents

module QRDA
  module Cat1
    class CommunicationFromPatientToProviderImporter < SectionImporter
      def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:act[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.2']"))
        super(entry_finder)
        @id_xpath = './cda:id'
        @code_xpath = './cda:code'
        @author_datetime_xpath = "./cda:author/cda:time"
        @entry_class = QDM::CommunicationFromPatientToProvider
      end

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        communication_from_patient_to_provider = super
        communication_from_patient_to_provider
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cqm-parsers-0.2.2 lib/qrda-import/data-element-importers/communication_from_patient_to_provider_importer.rb