class HealthDataStandards::Import::Cat1::ProcedurePerformedImporter
Public Class Methods
new(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.64']"))
click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/procedure_performed_importer.rb, line 5 def initialize(entry_finder=CDA::EntryFinder.new("./cda:entry/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.64']")) super(entry_finder) @incision_xpath ="./cda:entryRelationship/cda:procedure[./cda:templateId[@root='2.16.840.1.113883.10.20.24.3.89']]/cda:effectiveTime" @ordinality_xpath = "./cda:priorityCode | ./cda:entryRelationship/cda:observation[./cda:code[@code='260870009']]/cda:value" end
Public Instance Methods
create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
click to toggle source
Calls superclass method
# File lib/health-data-standards/import/cat1/procedure_performed_importer.rb, line 11 def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new) procedure = super extract_incision_date_time(entry_element,procedure) procedure end
Private Instance Methods
extract_incision_date_time(parent_element, procedure)
click to toggle source
# File lib/health-data-standards/import/cat1/procedure_performed_importer.rb, line 19 def extract_incision_date_time(parent_element, procedure) incision_time = parent_element.at_xpath(@incision_xpath) if incision_time procedure.incision_time = HL7Helper.timestamp_to_integer(incision_time['value']) end end