You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
In line 12 of lib/qme/manual_exclusion.rb, a class method references instance variables (instead of parameters), so the database query is always matching against an uninitialized variable
In line 12 of lib/qme/manual_exclusion.rb, a class method references instance variables (instead of parameters), so the database query is always matching against an uninitialized variable
QME::PatientCache.where({'value.measure_id'=>@measure_id, 'value.sub_id'=>@sub_id, 'value.medical_record_id'=>{'$in'=>mids} }).update_all({'$set'=>{'value.manual_exclusion'=>true}})
SHOULD READ (@ signs removed)
QME::PatientCache.where({'value.measure_id'=>measure_id, 'value.sub_id'=>sub_id, 'value.medical_record_id'=>{'$in'=>mids} }).update_all({'$set'=>{'value.manual_exclusion'=>true}})
As a result, the exclusions from collection manual_exclusions are never ported to patient_cache.
The text was updated successfully, but these errors were encountered: