Class: CQM::Measure
- Inherits:
-
Object
- Object
- CQM::Measure
- Includes:
- Mongoid::Document, Mongoid::Timestamps
- Defined in:
- app/models/cqm/measure.rb
Overview
bonnie/measure.rb
Constant Summary collapse
- IPP =
'IPP'.freeze
- DENOM =
'DENOM'.freeze
- NUMER =
'NUMER'.freeze
- NUMEX =
'NUMEX'.freeze
- DENEXCEP =
'DENEXCEP'.freeze
- DENEX =
'DENEX'.freeze
- MSRPOPL =
'MSRPOPL'.freeze
- OBSERV =
'OBSERV'.freeze
- MSRPOPLEX =
'MSRPOPLEX'.freeze
- STRAT =
'STRAT'.freeze
- ALL_POPULATION_CODES =
[STRAT, IPP, DENOM, DENEX, NUMER, NUMEX, DENEXCEP, MSRPOPL, OBSERV, MSRPOPLEX].freeze
- CQL_SKIP_STATEMENTS =
['SDE Ethnicity', 'SDE Payer', 'SDE Race', 'SDE Sex'].freeze
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.transform_json(json_hash, target = Measure.new) ⇒ Object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'app/models/cqm/measure.rb', line 108 def self.transform_json(json_hash, target = Measure.new) result = target result['id'] = json_hash['id'] unless json_hash['id'].nil? result['cms_id'] = json_hash['cms_id'] unless json_hash['cms_id'].nil? result['title'] = json_hash['title'] unless json_hash['title'].nil? result['description'] = json_hash['description'] unless json_hash['description'].nil? result['set_id'] = json_hash['set_id'] unless json_hash['set_id'].nil? result['calculation_method'] = json_hash['calculation_method'] unless json_hash['calculation_method'].nil? result['calculate_sdes'] = json_hash['calculate_sdes'] unless json_hash['calculate_sdes'].nil? result['fhir_measure'] = FHIR::Measure.transform_json(json_hash['fhir_measure']) unless json_hash['fhir_measure'].nil? result['libraries'] = json_hash['libraries'].map { |var| FHIR::Library.transform_json(var) } unless json_hash['libraries'].nil? result['value_sets'] = json_hash['value_sets'].map { |var| FHIR::ValueSet.transform_json(var) } unless json_hash['value_sets'].nil? result['cql_libraries'] = json_hash['cql_libraries'].map { |var| CQM::LogicLibrary.transform_json(var) } unless json_hash['cql_libraries'].nil? result['main_cql_library'] = json_hash['main_cql_library'] unless json_hash['main_cql_library'].nil? result['source_data_criteria'] = json_hash['source_data_criteria'].map { |var| CQM::DataElement.transform_json(var) } unless json_hash['source_data_criteria'].nil? result['population_sets'] = json_hash['population_sets'].map { |var| CQM::PopulationSet.transform_json(var) } unless json_hash['population_sets'].nil? result['measure_period'] = json_hash['measure_period'] unless json_hash['measure_period'].nil? result['code_systems_by_name'] = json_hash['code_systems_by_name'] unless json_hash['code_systems_by_name'].nil? result['created_at'] = json_hash['created_at'] unless json_hash['created_at'].nil? result['updated_at'] = json_hash['updated_at'] unless json_hash['updated_at'].nil? result end |
Instance Method Details
#as_json(*args) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'app/models/cqm/measure.rb', line 52 def as_json(*args) result = Hash.new unless self.id.nil? result['id'] = self.id.to_s end unless self.cms_id.nil? result['cms_id'] = self.cms_id end unless self.title.nil? result['title'] = self.title end unless self.description.nil? result['description'] = self.description end unless self.set_id.nil? result['set_id'] = self.set_id end unless self.calculation_method.nil? result['calculation_method'] = self.calculation_method end unless self.calculate_sdes.nil? result['calculate_sdes'] = self.calculate_sdes end unless self.fhir_measure.nil? result['fhir_measure'] = self.fhir_measure.as_json(*args) end unless self.libraries.nil? || !self.libraries.any? result['libraries'] = self.libraries.map{ |x| x.as_json(*args) } end unless self.value_sets.nil? || !self.value_sets.any? result['value_sets'] = self.value_sets.map{ |x| x.as_json(*args) } end unless self.cql_libraries.nil? || !self.cql_libraries.any? result['cql_libraries'] = self.cql_libraries.map{ |x| x.as_json(*args) } end unless self.main_cql_library.nil? result['main_cql_library'] = self.main_cql_library end unless self.source_data_criteria.nil? || !self.source_data_criteria.any? result['source_data_criteria'] = self.source_data_criteria.map{ |x| x.as_json(*args) } end unless self.population_sets.nil? || !self.population_sets.any? result['population_sets'] = self.population_sets.map{ |x| x.as_json(*args) } end unless self.measure_period.nil? result['measure_period'] = self.measure_period end unless self.code_systems_by_name.nil? result['code_systems_by_name'] = self.code_systems_by_name end result['created_at'] = self.created_at unless self.created_at.nil? result['updated_at'] = self.updated_at unless self.updated_at.nil? result end |