Fixes #7509 twigify dicom viewer (#7510)
[openemr.git] / library / classes / rulesets / Amc / reports / AMC_304b_1_STG2 / Numerator.php
blobdf7b54fef5e3205fc9be777b89a866e3ea924fd0
1 <?php
3 /**
5 * AMC 304b 1 STAGE2 Numerator
7 * Copyright (C) 2015 Ensoftek, Inc
9 * LICENSE: This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
20 * @package OpenEMR
21 * @author Ensoftek
22 * @link http://www.open-emr.org
24 // Generate and transmit permissible prescriptions electronically and queried for drug formulary.( AMC-2014:170.314(g)(1)/(2) 8 )
26 class AMC_304b_1_STG2_Numerator implements AmcFilterIF
28 public function getTitle()
30 return "AMC_304b_1_STG2 Numerator";
33 public function test(AmcPatient $patient, $beginDate, $endDate)
35 //The number of prescriptions in the denominator generated, queried for a drug formulary and transmitted electronically
36 $eprescribe = amcCollect('e_prescribe_amc', $patient->id, 'prescriptions', $patient->object['id']);
37 $checkformulary = amcCollect('e_prescribe_chk_formulary_amc', $patient->id, 'prescriptions', $patient->object['id']);
38 if (!(empty($eprescribe)) && !(empty($checkformulary))) {
39 return true;
40 } else {
41 return false;