Sha256: ca4c2ebf31ae21d72d46a6caa2859d828d9bfd66451d327c0bf7e49275b86de7

Contents?: true

Size: 923 Bytes

Versions: 6

Compression:

Stored size: 923 Bytes

Contents

module QDM
  class DataElement
    def merge!(other)
      # ensure they're the same category (e.g. 'encounter')
      return unless category == other.category

      # ensure they're the same status (e.g. 'performed'), and that they both have a status set (or that they both don't)
      return if respond_to?(:qdmStatus) && !other.respond_to?(:qdmStatus)
      return if !respond_to?(:qdmStatus) && other.respond_to?(:qdmStatus)
      return if respond_to?(:qdmStatus) && other.respond_to?(:qdmStatus) && qdmStatus != other.qdmStatus
      
      # iterate over non-code fields
      fields.each_key do |field|
        next if field[0] == '_' || %w[dataElementCodes category qdmVersion qdmStatus].include?(field)
        
        if send(field).nil?
          send(field + '=', other.send(field))
        end
      end

      self.dataElementCodes = dataElementCodes.concat(other.dataElementCodes).uniq
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cqm-parsers-0.2.4 lib/ext/data_element.rb
cqm-parsers-0.2.3 lib/ext/data_element.rb
cqm-parsers-0.2.2 lib/ext/data_element.rb
cqm-parsers-0.2.1 lib/ext/data_element.rb
cqm-parsers-0.1.1 lib/ext/data_element.rb
cqm-parsers-0.1.0 lib/ext/data_element.rb