Sha256: ef69408528226b690578c4629a1e94e0c21a496a34b6aa2bad464ef885f2a205

Contents?: true

Size: 1.36 KB

Versions: 23

Compression:

Stored size: 1.36 KB

Contents

module HealthDataStandards
  module Import
    module Cat1
      class GestationalAgeImporter < CDA::SectionImporter

        def initialize
          super(CDA::EntryFinder.new("./cda:entry/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.101']"))

        end

        def create_entry(entry_element, nrh = CDA::NarrativeReferenceHandler.new)
          ga_entry = super
          swap_code_based_on_value(ga_entry)
          ga_entry
        end
    
        private

        # QRDA Cat 1 represents gestational age by using the SNOMED code for length
        # of gestation and then providing the length in weeks in a value element.
        # The measure value sets use the SNOMED codes that correspond to an actual
        # gestational length. This method uses the value to replace the SNOMED code
        # in the entry.
        def swap_code_based_on_value(ga_entry)
          value = ga_entry.values.first
          if value.present?
            case value.scalar
            when "39"
              ga_entry.codes = {'SNOMED-CT' => ['80487005']}
            when "38"
              ga_entry.codes = {'SNOMED-CT' => ['13798002']}
            when "37"
              ga_entry.codes = {'SNOMED-CT' => ['43697006']}
            when "36"
              ga_entry.codes = {'SNOMED-CT' => ['931004']}
            end
          end
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
health-data-standards-4.3.5 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.3.4 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.3.3 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.3.2 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.3.1 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.3.0 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.2.0 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.1.0 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.6 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.5 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.4 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.3 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.2 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.1 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-4.0.0 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-3.7.0 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-3.6.1 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-3.5.3 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-3.5.2 lib/health-data-standards/import/cat1/gestational_age_importer.rb
health-data-standards-3.5.1 lib/health-data-standards/import/cat1/gestational_age_importer.rb