minor changes to prior commit
[openemr.git] / interface / soap_functions / soap_accountStatusDetails.php
blobcb8198fcaaf97b5b8fc1a107e600bf29e178c649
1 <?php
3 /**
4 * interface/soap_functions/soap_accountStatusDetails.php Display current
5 * patients NewCrop account status.
7 * Copyright (C) 2011 ZMG LLC <sam@zhservices.com>
9 * LICENSE: This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 3 of the License, or (at your option) any
12 * later version. This program is distributed in the hope that it will be
13 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15 * Public License for more details. You should have received a copy of the GNU
16 * General Public License along with this program.
17 * If not, see <http://opensource.org/licenses/gpl-license.php>.
19 * @package OpenEMR
20 * @subpackage NewCrop
21 * @author Eldho Chacko <eldho@zhservices.com>
22 * @author Vinish K <vinish@zhservices.com>
23 * @author Sam Likins <sam.likins@wsi-services.com>
24 * @link http://www.open-emr.org
28 require_once(__DIR__.'/../globals.php');
29 require_once($GLOBALS['fileroot'].'/interface/eRxGlobals.php');
30 require_once($GLOBALS['fileroot'].'/interface/eRxStore.php');
31 require_once($GLOBALS['srcdir'].'/xmltoarray_parser_htmlfix.php');
32 require_once($GLOBALS['srcdir'].'/lists.inc');
33 require_once($GLOBALS['srcdir'].'/amc.php');
34 require_once($GLOBALS['fileroot'].'/interface/eRxSOAP.php');
35 require_once($GLOBALS['fileroot'].'/interface/eRx_xml.php');
37 set_time_limit(0);
39 $eRxSOAP = new eRxSOAP;
40 $eRxSOAP->setGlobals(new eRxGlobals($GLOBALS))
41 ->setStore(new eRxStore)
42 ->setAuthUserId($_SESSION['authUserID']);
44 if (array_key_exists('patient', $_REQUEST)) {
45 $eRxSOAP->setPatientId($_REQUEST['patient']);
46 } elseif (array_key_exists('pid', $GLOBALS)) {
47 $eRxSOAP->setPatientId($GLOBALS['pid']);
50 $accountStatus = $eRxSOAP->getAccountStatus()
51 ->GetAccountStatusResult->accountStatusDetail;
54 <head>
55 <link rel="stylesheet" href="<?php echo $css_header; ?>" type="text/css">
56 </head>
57 <body class='body_top'>
58 <table class='text' align=center width='90%' height='80%' style='padding-top:6%'>
59 <tr>
60 <th colspan=2><?php echo xlt('eRx Account Status'); ?></th>
61 </tr>
62 <tr>
63 <td><?php echo xlt('Pending Rx Count'); ?></td>
64 <td><?php echo $accountStatus->PendingRxCount;?></td>
65 </tr>
66 <tr>
67 <td><?php echo xlt('Alert Count'); ?></td>
68 <td><?php echo $accountStatus->AlertCount;?></td>
69 </tr>
70 <tr>
71 <td><?php echo xlt('Fax Count'); ?></td>
72 <td><?php echo $accountStatus->FaxCount;?></td>
73 </tr>
74 <tr>
75 <td><?php echo xlt('Pharm Com Count'); ?></td>
76 <td><?php echo $accountStatus->PharmComCount;?></td>
77 </tr>
78 </table>
79 </body>