コード例 #1
0
ファイル: Numerator11.php プロジェクト: juggernautsei/openemr
 public function test(CqmPatient $patient, $beginDate, $endDate)
 {
     if (Immunizations::checkDtap($patient, $beginDate, $endDate) && Immunizations::checkIpv($patient, $beginDate, $endDate) && (Immunizations::checkMmr($patient, $beginDate, $endDate) && !Helper::checkAllergy(Allergy::POLYMYXIN, $patient, $patient->dob, $endDate)) && Immunizations::checkVzv($patient, $beginDate, $endDate) && Immunizations::checkHepB($patient, $beginDate, $endDate)) {
         return true;
     }
     return false;
 }
コード例 #2
0
ファイル: Numerator3.php プロジェクト: katopenzz/openemr
 public function test(CqmPatient $patient, $beginDate, $endDate)
 {
     if (Immunizations::checkMmr($patient, $beginDate, $endDate)) {
         return true;
     }
     return false;
 }
コード例 #3
0
ファイル: Numerator.php プロジェクト: mi-squared/openemr
 public function test(CqmPatient $patient, $beginDate, $endDate)
 {
     if (Immunizations::checkDtap($patient, $beginDate, $endDate) || Immunizations::checkIpv($patient, $beginDate, $endDate) || Immunizations::checkMmr($patient, $beginDate, $endDate) || Immunizations::checkHib($patient, $beginDate, $endDate) || Immunizations::checkHepB($patient, $beginDate, $endDate) || Immunizations::checkVzv($patient, $beginDate, $endDate) || Immunizations::checkPheumococcal($patient, $beginDate, $endDate) || Immunizations::checkHepA($patient, $beginDate, $endDate) || Immunizations::checkRotavirus_2014($patient, $beginDate, $endDate) || Immunizations::checkInfluenza($patient, $beginDate, $endDate)) {
         return true;
     }
     return false;
 }