From 15035059b8d967d746c580088aca23a3f9905452 Mon Sep 17 00:00:00 2001 From: Ken Chapple Date: Wed, 13 Jul 2011 07:12:45 -0700 Subject: [PATCH] fixed NFQ 0038 numerator 12 not getting incremented --- library/classes/rulesets/Cqm/reports/NFQ_0038/Numerator12.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/library/classes/rulesets/Cqm/reports/NFQ_0038/Numerator12.php b/library/classes/rulesets/Cqm/reports/NFQ_0038/Numerator12.php index b1c4c1af7..62a67f110 100644 --- a/library/classes/rulesets/Cqm/reports/NFQ_0038/Numerator12.php +++ b/library/classes/rulesets/Cqm/reports/NFQ_0038/Numerator12.php @@ -20,7 +20,10 @@ class NFQ_0038_Numerator12 implements CqmFilterIF !Helper::checkAllergy( Allergy::POLYMYXIN, $patient, $patient->dob, $endDate ) ) && Immunizations::checkVzv( $patient, $beginDate, $endDate ) && Immunizations::checkHepB( $patient, $beginDate, $endDate ) && - Immunizations::checkPheumococcal( $patient, $beginDate, $endDate ) ) + Immunizations::checkPheumococcal( $patient, $beginDate, $endDate ) ) { + return true; + } + return false; } } -- 2.11.4.GIT