-
Notifications
You must be signed in to change notification settings - Fork 10
/
patient.php
275 lines (266 loc) · 12 KB
/
patient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
session_start();
include('modules/dbhandler.php');
include('modules/functions.php');
if(isset($_SESSION['id'])){
if($_SESSION['privileges'] == 'sec' || $_SESSION['privileges'] == 'aux' || $_SESSION['privileges'] == 'den' || $_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web'){
if(isset($_GET['id'])){
$handler = new DBHandler();
$patientdata = $handler->getPatientDataById($_GET['id']);
}
else{
header('Location:error.php');
}
}
else{
header('Location:denied.php');
}
}
else{
header('Location:index.php');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dental: <?php echo $patientdata['firstname'] . ' ' . $patientdata['firstlastname'] . ' ' . $patientdata['secondlastname'];?></title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<?php include('includes/styles.php');?>
<link rel="stylesheet" type="text/css" href="css/tablesorter.css" />
<?php include('includes/jquery.php');?>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/patient.js"></script>
</head>
<body>
<div id="header">
<div class="center"><a href="menu.php"><img alt="logo" src="images/logo.png" /></a></div>
<ul class="innerlinks">
<li><a href="addpatient.php">Agregar Paciente</a></li>
<li><a href="loadpatient.php">Cargar Paciente</a></li>
<li><a href="patientslist.php">Lista de Pacientes</a></li>
</ul>
<div class="usersession">
<img alt="user" src="images/user.png" />
Registrado como <?php echo $_SESSION['firstname'] . ' ' . $_SESSION['firstlastname'] . ' ' . $_SESSION['secondlastname'];?> |
<a href="logout.php" class="session">Cerrar Sesión</a>
</div>
</div>
<div id="outer-wrapper">
<fieldset>
<?php
if($patientdata != null){
?>
<legend>Paciente: <?php echo $patientdata['firstname'] . ' ' . $patientdata['firstlastname'] . ' ' . $patientdata['secondlastname'];?></legend>
<div>
<div class="persondata">
<p class="persondatafield">Id: <span class="clear"><?php echo $patientdata['id'];?></span></p>
<hr />
<p class="persondatafield">Primer Nombre: <span class="clear"><?php echo $patientdata['firstname'];?></span></p>
<p class="persondatafield">Segundo Nombre: <span class="clear"><?php echo $patientdata['middlename'];?></span></p>
<p class="persondatafield">Primer Apellido: <span class="clear"><?php echo $patientdata['firstlastname'];?></span></p>
<p class="persondatafield">Segundo Apellido: <span class="clear"><?php echo $patientdata['secondlastname'];?></span></p>
<p class="persondatafield">Sexo: <span class="clear"><?php echo getSex($patientdata['sex']);?></span></p>
<p class="persondatafield">Tipo de Documento: <span class="clear"><?php echo getDocumentType($patientdata['documenttype']);?></span></p>
<p class="persondatafield">Número de Documento: <span class="clear"><?php echo $patientdata['documentnumber'];?></span></p>
<p class="persondatafield">Fecha de Nacimiento: <span class="clear"><?php echo toFormDate($patientdata['birthdate']);?></span></p>
<p class="persondatafield">Tipo de Sangre: <span class="clear"><?php echo getBloodtype($patientdata['bloodtype']);?></span></p>
<p class="persondatafield">Dirección: <span class="clear"><?php echo $patientdata['address'];?></span></p>
<p class="persondatafield">Teléfono: <span class="clear"><?php echo $patientdata['phonehome'];?></span></p>
<p class="persondatafield">Teléfono Oficina: <span class="clear"><?php echo $patientdata['phoneoffice'];?></span></p>
<p class="persondatafield">Celular: <span class="clear"><?php echo $patientdata['cellnumber'];?></span></p>
<p class="persondatafield">Correo Electrónico: <span class="clear"><?php echo $patientdata['email'];?></span></p>
<p class="persondatafield">Estado Civil: <span class="clear"><?php echo getMaritalstatus($patientdata['maritalstatus']);?></span></p>
<p class="persondatafield">Ocupación: <span class="clear"><?php echo $patientdata['occupation'];?></span></p>
<hr />
<p class="persondatafield">Acudiente: <span class="clear"><?php echo $patientdata['contact'];?></span></p>
<p class="persondatafield">Número Acudiente: <span class="clear"><?php echo $patientdata['contactnumber'];?></span></p>
<hr />
<p class="persondatafield">Activo: <span class="clear"><?php echo getState($patientdata['active']);?></span></p>
</div>
</div>
<ul class="innerlinks">
<li><a href="medicalrecord.php?id=<?php echo $patientdata['id'];?>">Historia Clínica</a></li>
<li><a href="addbudget.php?id=<?php echo $patientdata['id'];?>">Generar Presupuesto</a></li>
<?php
if($_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web' || $_SESSION['privileges'] == 'sec'){
?>
<li><a href="addappointment.php?id=<?php echo $patientdata['id'];?>">Agendar Cita</a></li>
<li><a href="addpayment.php?id=<?php echo $patientdata['id'];?>">Registrar Recaudo</a></li>
<?php
}
?>
</ul>
<?php
if($_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web' || $_SESSION['privileges'] == 'sec'){
?>
<ul class="innerlinks">
<li><a href="modifypatient.php?id=<?php echo $patientdata['id'];?>">Modificar Datos</a></li>
<li><a href="statepatient.php?id=<?php echo $patientdata['id'];?>"><?php if($patientdata['active'] == 1) echo 'Inactivar'; else echo 'Activar';?></a></li>
</ul>
<?php
}
?>
<?php
if($_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web' || $_SESSION['privileges'] == 'sec'){
?>
<!-- Lista de recaudos -->
<h1>Recaudos</h1>
<hr />
<div class="section">
<?php
$total = $handler->getPaymentCount($patientdata['id']);
if($total > 0){
$list = $handler->getPaymentList($patientdata['id']);
?>
<table class="tablesorter">
<thead>
<tr><th>Id</th><th>Usuario</th><th>Fecha</th><th>Valor</th><th>Modificar</th><th>Ver</th></tr>
</thead>
<tbody>
<?php
for($i = 0;$i < $total;$i += 1){
?>
<tr>
<td style="text-align:center;"><?php echo $list[$i][0];?></td>
<td><a href="user.php?id=<?php echo $list[$i][2];?>"><?php echo $handler->getUserName($list[$i][2]);?></a></td>
<td style="text-align:center;"><?php echo toFormDate($list[$i][3]);?></td>
<td style="text-align:right;">$<?php echo number_format($list[$i][4]);?></td>
<td style="text-align:center;"><a href="modifypayment.php?id=<?php echo $list[$i][0];?>"><img alt="modificar" src="images/edit.png" title="modificar" /></a></td>
<td style="text-align:center;"><a href="showpayment.php?id=<?php echo $list[$i][0];?>" rel="external"><img alt="ver" src="images/look.png" title="ver" /></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
<p class="center"><a href="showpaymentreport.php?id=<?php echo $patientdata['id'];?>" rel="external">Ver Reporte de Recaudos</a></p>
<?php
}
else{
?>
<p class="center">El paciente no ha realizado recaudos</p>
<?php
}
?>
</div>
<?php
}
?>
<br />
<h1>Citas</h1>
<hr />
<div class="section">
<?php
$total = $handler->getAppointmentCountByPatient($patientdata['id']);
if($total > 0){
$list = $handler->getAppointmentListByPatient($patientdata['id']);
?>
<table class="tablesorter">
<thead>
<tr><th>Id</th><th>Dentista</th><th>Fecha</th><th>Hora Inicio</th><th>Hora Fin</th><th>Tipo</th><th>Estado</th><th>Modificar</th></tr>
</thead>
<tbody>
<?php
for($i = 0;$i < $total;$i += 1){
?>
<tr>
<td><?php echo $list[$i][0];?></td>
<td><a href="user.php?id=<?php echo $list[$i][2];?>"><?php echo $handler->getUserName($list[$i][2]);?></a></td>
<td><?php echo toFormDate($list[$i][3]);?></td>
<td><?php echo $handler->getHour($list[$i][4]);?></td>
<td><?php echo $handler->getHour($list[$i][5]);?></td>
<td><?php echo getAppointmentType($list[$i][6]);?></td>
<td><a href="stateappointment.php?id=<?php echo $list[$i][0];?>"><?php echo getAppointmentStatus($list[$i][9]);?></a></td>
<td style="text-align:center;"><a href="modifyappointment.php?id=<?php echo $list[$i][0]; ?>"><img alt="modificar" src="images/edit.png" title="modificar" /></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
}
else{
?>
<p class="center">El paciente no tiene citas agendadas</p>
<?php
}
?>
</div>
<br />
<h1>Presupuestos</h1>
<hr />
<div class="section">
<?php
$total = $handler->getBudgetCount($patientdata['id']);
if($total > 0){
$list = $handler->getBudgetList($patientdata['id']);
?>
<table class="tablesorter">
<thead>
<tr><th>Id</th><th>Código</th><th>Usuario</th><th>Fecha</th><th>Valor</th><th>Descuento</th><th>Total</th><th>Activo</th><th>Opción</th><th>Modificar</th><th>Ver</th></tr>
</thead>
<tbody>
<?php
for($i = 0;$i < $total;$i += 1){
$active = false;
$price = $handler->getBudgetPrice($list[$i][0]);
$applied = $price - ($price * $list[$i][5]);
?>
<tr>
<td><?php echo $list[$i][0];?></td>
<td><?php echo $list[$i][1];?></td>
<td><a href="user.php?id=<?php echo $list[$i][3];?>"><?php echo $handler->getUserName($list[$i][3]);?></a></td>
<td><?php echo toFormDate($list[$i][4]);?></td>
<td style="text-align:right;">$<?php echo number_format($price);?></td>
<td style="text-align:right;"><?php echo ($list[$i][5] * 100) . '%';?></td>
<td style="text-align:right;">$<?php echo number_format($applied);?></td>
<?php
if($list[$i][6] == 1){
?>
<td>Si</td>
<td style="text-align:center;"><a href="updatebudget.php?id=<?php echo $list[$i][0];?>"><img alt="actualizar" src="images/reload.png" title="actualizar" /></a></td>
<td style="text-align:center;">---</td>
<?php
}
else{
?>
<td>No</td>
<td style="text-align:center;"><a href="activatebudget.php?id=<?php echo $list[$i][0];?>"><img alt="activar" src="images/success.png" title="activar" /></a></td>
<td style="text-align:center;"><a href="modifybudget.php?id=<?php echo $list[$i][0];?>"><img alt="modificar" src="images/edit.png" title="modificar" /></a></td>
<?php
}
?>
<td style="text-align:center;"><a href="showbudget.php?id=<?php echo $list[$i][0];?>" rel="external"><img alt="ver" src="images/look.png" title="ver" /></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
<p class="center"><a href="showbudgetreport.php?id=<?php echo $patientdata['id'];?>" rel="external">Ver Reporte de Presupuestos</a></p>
<?php
}
else{
?>
<p class="center">El paciente no tiene presupuestos</p>
<?php
}
?>
</div>
<!-- Fin lista de Presupuestos -->
<?php
}
else{
?>
<legend>Paciente no encontrado</legend>
<p class="center">Paciente no encontrado</p>
<?php
}
?>
</fieldset>
</div>
<!-- Fin Contenedor Principal -->
</body>
</html>