Class: HealthDataStandards::Import::Cat1::InsuranceProviderImporter

Inherits:
HealthDataStandards::Import::CDA::SectionImporter show all
Defined in:
lib/health-data-standards/import/cat1/insurance_provider_importer.rb

Instance Attribute Summary

Attributes inherited from HealthDataStandards::Import::CDA::SectionImporter

#check_for_usable, #code_xpath, #status_xpath

Instance Method Summary collapse

Methods inherited from HealthDataStandards::Import::CDA::SectionImporter

#create_entries

Methods included from HealthDataStandards::Import::CDA::LocatableImportUtils

#import_address, #import_telecom

Constructor Details

#initializeInsuranceProviderImporter

Returns a new instance of InsuranceProviderImporter.



6
7
8
9
10
# File 'lib/health-data-standards/import/cat1/insurance_provider_importer.rb', line 6

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

Instance Method Details

#create_entry(payer_element, nrh = CDA::NarrativeReferenceHandler.new) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/health-data-standards/import/cat1/insurance_provider_importer.rb', line 12

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
  extract_dates(payer_element, ip)
  ip
end