Sha256: 383a3aa1029ba40e3f605ea39066ade731d13306fb81a473863c4e2bc28e34f6
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
module HealthDataStandards module Util # General helpers for working with codes and code systems class HQMFTemplateHelper def self.definition_for_template_id(template_id, version="r1") template_id_map(version)[template_id] end def self.template_id_map(version) if @id_map.blank? @id_map = { 'r1' => JSON.parse(File.read(File.expand_path('../hqmf_template_oid_map.json', __FILE__))), 'r2' => JSON.parse(File.read(File.expand_path('../hqmfr2_template_oid_map.json', __FILE__))) } end @id_map[version] end def self.template_id_by_definition_and_status(definition, status, negation=false, version="r1") case version when "r1" kv_pair = template_id_map(version).find {|k, v| v['definition'] == definition && v['status'] == status && v['negation'] == negation} when "r2" kv_pair = template_id_map(version).find {|k, v| v['definition'] == definition && v['status'] == status} end if kv_pair kv_pair.first else nil end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
health-data-standards-3.7.0 | lib/health-data-standards/util/hqmf_template_helper.rb |