Sha256: 0d8b05388f5fc3ab3b247de8a731a8e96a6656b6d1e2bcacf8d89fb652ca5c21

Contents?: true

Size: 885 Bytes

Versions: 2

Compression:

Stored size: 885 Bytes

Contents

module QRDA
  module Cat1
    class CommunicationFromProviderToProviderImporter < 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.4']"))
        super(entry_finder)
        @entry_does_not_have_reason = true
        @id_xpath = './cda:id'
        @code_xpath = './cda:code'
        @author_datetime_xpath = "./cda:author/cda:time"
        @related_to_xpath = "./sdtc:inFulfillmentOf1/sdtc:actReference"
        @entry_class = QDM::CommunicationFromProviderToProvider
      end

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        communication_from_provider_to_provider = super
        communication_from_provider_to_provider.relatedTo = extract_related_to(entry_element)
        communication_from_provider_to_provider
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cqm-parsers-0.2.4 lib/qrda-import/data-element-importers/communication_from_provider_to_provider_importer.rb
cqm-parsers-0.2.3 lib/qrda-import/data-element-importers/communication_from_provider_to_provider_importer.rb