Sha256: 845761287c5ae17997376420c83d733f5cb137838bf1c1f0246c05bb739c990c

Contents?: true

Size: 749 Bytes

Versions: 5

Compression:

Stored size: 749 Bytes

Contents

module HealthDataStandards
  module Import
    module Cat1
      class InsuranceProviderImporter < CDA::SectionImporter
      
        def initialize
          super(CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.55']"))
          @check_for_usable = false # needs to be this way becase InsuranceProvider does not respond
                                    # to usable?
        end

        def create_entry(payer_element, nrh = CDA::NarrativeReferenceHandler.new)
          ip = InsuranceProvider.new
          value_element = payer_element.at_xpath('cda:value')
          ip.codes = { 'SOP' => [value_element['code']] } if value_element
          ip
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
health-data-standards-3.5.2 lib/health-data-standards/import/cat1/insurance_provider_importer.rb
health-data-standards-3.5.1 lib/health-data-standards/import/cat1/insurance_provider_importer.rb
health-data-standards-3.5.0 lib/health-data-standards/import/cat1/insurance_provider_importer.rb
health-data-standards-3.4.6 lib/health-data-standards/import/cat1/insurance_provider_importer.rb
health-data-standards-3.4.5 lib/health-data-standards/import/cat1/insurance_provider_importer.rb