Merge pull request #2015 from bradymiller/rebase-danehrlich1-more-sql-changes_1
[openemr.git] / portal / get_profile.php
blob6c12dd237ab88e2451359f5a53146a8a1b2db7a6
1 <?php
2 /**
4 * Copyright (C) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
6 * LICENSE: This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
17 * @package OpenEMR
18 * @author Jerry Padgett <sjpadgett@gmail.com>
19 * @link http://www.open-emr.org
22 //namespace OnsitePortal;
24 require_once("verify_session.php");
25 require_once("./../library/report.inc");
26 require_once("./../library/options.inc.php");
27 require_once("./../library/lists.inc");
28 require_once("./../custom/code_types.inc.php");
29 require_once("./../library/forms.inc");
30 require_once("./../library/patient.inc");
32 require_once("./lib/appsql.class.php");
33 require_once("./lib/section_fetch.class.php");
34 // $fetchsec = new FetchSection ();
35 $appsql = new ApplicationTable();
36 $pending = $appsql->getPortalAudit($pid, 'review');
37 $N = 7;
40 <style>
41 .insurance .table .bold {
42 font-weight: bold;
43 font-size: 14px;
46 .insurance .table .text {
47 color: red;
49 .demographics .groupname.bold{
50 font-size:18px;
51 color: blue;
53 .demographics table .bold {
54 font-weight:normal;
55 font-size:16px;
56 color:green;
57 padding: 1px;
58 border-top: 0;
60 .demographics table .text {
61 font-weight: normal;
62 font-size: 15px;
63 color: red;
66 .demographics .table td {
67 padding: 1px;
68 border-top: 0;
72 .demographics .panel-heading {
73 padding: 5px 8px;
74 background: #337ab7;
75 color: white;
77 </style>
78 <body>
80 <div class='demographics table-responsive' id='DEM'>
81 <div class="col-sm-9">
83 <?php
84 $result1 = getPatientData($pid);
85 $result2 = getEmployerData($pid);
87 <div class="panel panel-primary" >
88 <header class="panel-heading"><?php echo xlt('Profile Demographics'); ?>
89 <?php if ($pending) {
90 echo '<button type="button" id="editDems" class="btn btn-danger btn-xs pull-right" style="color:white;font-size:14px">' . xlt('Pending Review') . '</button>';
91 } else {
92 echo '<button type="button" id="editDems" class="btn btn-success btn-xs pull-right" style="color:white;font-size:14px">' . xlt('Revise') . '</button>';
95 </header>
96 <div class="panel-body " id="dempanel">
97 <table class='table table-responsive table-condensed'>
98 <?php
99 display_layout_rows('DEM', $result1, $result2);
101 </table>
102 </div>
103 <div class="panel-footer"></div>
104 </div>
105 </div>
106 </div>
107 <div class="row">
108 <div class="col-sm-12">
109 <div class='insurance table-condensed table-responsive'>
110 <div class="panel panel-primary">
111 <header class="panel-heading"><?php echo xlt('Primary Insurance');?></header>
112 <div class="panel-body">
113 <?php
114 printRecDataOne($insurance_data_array, getRecInsuranceData($pid, "primary"), $N);
116 </div>
117 </div>
118 <div class="panel panel-primary">
119 <header class="panel-heading"><?php echo xlt('Secondary Insurance');?></header>
120 <div class="panel-body">
121 <?php
122 printRecDataOne($insurance_data_array, getRecInsuranceData($pid, "secondary"), $N);
123 ?></div>
124 </div>
125 <div class="panel panel-primary">
126 <header class="panel-heading"><?php echo xlt('Tertiary Insurance');?></header>
127 <div class="panel-body">
128 <?php
129 printRecDataOne($insurance_data_array, getRecInsuranceData($pid, "tertiary"), $N);
130 ?></div>
131 </div>
132 </div>
133 </div>
134 </div>
135 <div>
136 <?php
137 echo "<div class='immunizations'><h4>" . xlt('Patient Immunization') . '</h4>';
138 $result = FetchSection::getImmunizations($pid);
139 foreach ($result as $row) {
140 echo text($row{'administered_formatted'}) . ' : ';
141 echo text($row['code_text']) . ' : ';
142 echo text($row['note']) . ' : ';
143 echo text($row['completion_status']) . '<br>';
146 </div>
148 </body>