class HealthDataStandards::Import::CCDA::MedicationImporter

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/health-data-standards/import/ccda/medication_importer.rb, line 7
def initialize
  super(CDA::EntryFinder.new("//cda:section[cda:templateId/@root='2.16.840.1.113883.10.20.22.2.1' or cda:templateId/@root='2.16.840.1.113883.10.20.22.2.1.1']/cda:entry/cda:substanceAdministration"))
  @indication_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.22.4.19']/cda:code"
  @vehicle_xpath = "./cda:participant/cda:participantRole[cda:templateId/@root='2.16.840.1.113883.10.20.22.4.24']/cda:playingEntity/cda:code"
  @fill_number_xpath = './cda:repeatNumber'
end