Sha256: 14f5d8165b3a90081392842e680654ab4271743d969677d39ce80fd168402600

Contents?: true

Size: 859 Bytes

Versions: 6

Compression:

Stored size: 859 Bytes

Contents

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

      def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
        diagnostic_study_recommended = super
        entity = extract_entity(entry_element, "./cda:participant[@typeCode='PRF']")
        diagnostic_study_recommended.requester.concat(entity) if entity
        diagnostic_study_recommended
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cqm-reports-4.1.3 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb
cqm-reports-4.1.2 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb
cqm-reports-4.1.1 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb
cqm-reports-4.1.0 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb
cqm-reports-4.0.1 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb
cqm-reports-4.0.0 lib/qrda-import/data-element-importers/diagnostic_study_recommended_importer.rb