-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_muestra_datos_historia.php
249 lines (220 loc) · 7.61 KB
/
form_muestra_datos_historia.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
<?php
include 'session.php';
include 'conexion.php';
include 'funciones.php';
parse_str(decryptLink(), $output);
$check = $output['check'];
$id_paciente = $output['id_paciente'];
if(empty($check)){
$_SESSION['mensaje']= "ACCESO RESTRINGIDO";
$_SESSION['url']= "logout.php";
header('Location: mensaje.php',true,303);
exit;
}
//consulto datos usuario
$sql = "SELECT * FROM mm_pacientes WHERE id=".$id_paciente;
$result = $conexion->query($sql);
$row_pacientes = $result->fetch_array(MYSQLI_ASSOC);
//consulto datos historias y fichas
$sql = "SELECT * FROM mm_historiasclinicas WHERE paciente=".$id_paciente;
if($result = $conexion->query($sql)){
if ($result->num_rows > 0){
$i=1;
$j=1;
while ($row_historia = $result->fetch_array(MYSQLI_ASSOC)){
$historia[$i]=$row_historia;
//consulto datos fichas
$sql = "SELECT * FROM mm_fichahistoria WHERE historiaclinica=".$historia[$i]['id'];
if($result_ficha = $conexion->query($sql)){
while ($row_ficha = $result_ficha->fetch_array(MYSQLI_ASSOC)){
$ficha[$i][$j]=$row_ficha;
$j++;
}
}else{
echo $sql.' - '.$conexion->error;
}
$i++;
}
}else{
echo "Sin historias asociadas.";
}
}else{
echo $sql.' - '.$conexion->error;
}
if ($i > 0) {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="es-AR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Historia Clínica</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="jquery-barcode.min.js"></script>
<script>
$(function() {
$("#barcode").barcode(
"<?= sprintf("%'.013d", $row_pacientes['tipodocumento'].$row_pacientes['documento'])?>", // Valor del codigo de barras
"ean13" // tipo (cadena)
);
var beforePrint = function() {
window.location.replace("form_print_datos_historia.php?id_paciente=<?=$id_paciente;?>");
console.log('Functionality to run before printing.');
return false;
};
var afterPrint = function() {
console.log('Functionality to run after printing');
};
if (window.matchMedia) {
var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener(function(mql) {
if (mql.matches) {
beforePrint();
} else {
afterPrint();
}
});
}
});
</script>
</head>
<body id="main_body">
<div class="container">
<? include 'menu.php'; ?>
<div class="panel panel-primary" style="margin-top: 10px;">
<div class="panel-heading ">
<h2>Historia Clínica</h2>
</div>
<div class="panel-body">
<?
$k=1;
$l=1;
?>
<div class="form-group form-inline">
<div id="barcode"></div>
<label class="control-label">Paciente:</label>
<p class="form-control-static"><?= $row_pacientes['apellido'].', '.$row_pacientes['nombre']; ?></p>
<label class="control-label">| Documento:</label>
<p class="form-control-static"><?= $row_pacientes['documento']; ?></p>
</div>
<?
if ($_SESSION['tipousuario']){
?>
<form id="form_comentario_historia" method="post" enctype="multipart/form-data" action="carga_comentario_historia.php">
<div class="form-group">
<label class="control-label">Comentarios:</label>
<textarea rows="5" id="element_1" name="comentario_historia" class="form-control" type="text" value="<?= $historia[$k]['comentarios']; ?>" placeholder="comentario" ><?= $historia[$k]['comentarios']; ?></textarea>
<input type="hidden" name="id_paciente" value="<?= $id_paciente; ?>" />
<input type="hidden" name="id_historia" value="<?= $historia[$k]['id']; ?>" />
<input type="submit" id="submit_01" class="btn btn-default btn-sm" />
</div>
</form>
<?
}
?>
<div class="panel-group d-print-none" id="accordion">
<?
if ($_SESSION['tipousuario']==2 || $_SESSION['tipousuario']==1){
?>
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse0">
Cargar nueva evolución.</a>
</h4>
</div>
<div id="collapse0" class="panel-collapse collapse">
<div class="panel-body">
<form id="form_evolucion" method="post" enctype="multipart/form-data" action="carga_datos_evolucion.php">
<?
//$_SESSION['id_historia']=$historia[$k]['id'];
//$_SESSION['id_paciente']=$_GET['id_paciente'];
?>
<input type="hidden" name="id_paciente" value="<?= $id_paciente; ?>" />
<input type="hidden" name="id_historia" value="<?= $historia[$k]['id']; ?>" />
<div class="form-group">
<label for="element_5">Datos: </label>
<textarea rows="7" id="element_5" name="datos" class="form-control" type="text" value="" placeholder="" ></textarea>
</div>
<div class="form-group">
<label for="element_11">Comentario: </label>
<textarea rows="5" id="element_11" name="comentario" class="form-control" type="text" value="" placeholder="comentarios" ></textarea>
</div>
<div class="form-group">
<label for="inputGroupFileAddon">Adjunto</label>
<input type="hidden" name="MAX_FILE_SIZE" value="2097152" />
<input type="file" id="inputGroupFile"name="myfile">
</div>
<input type="submit" name="submit" class="btn btn-success" />
</form>
</div>
</div>
</div>
<?
}
//Muestro todas las evoluciones
for ($l=$j-1;$l>0;$l--){
?>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse<?= $l; ?>">
Evolución de fecha <?= date("d/m/Y", strtotime($ficha[$k][$l]['fechaficha'])); ?></a>
</h4>
</div>
<div id="collapse<?= $l; ?>" class="panel-collapse <?= ($l==$j-1)?' class="collapse.show" ':'collapse';?>">
<div class="panel-body" style="word-break:break-word;">
<?
$sql = "SELECT * FROM mm_usuarios WHERE id=" . $ficha[$k][$l]['usuariocarga'];
if($result_medico = $conexion->query($sql)){
$row_medico = $result_medico->fetch_array(MYSQLI_ASSOC);
}else{
$mensajes[] = "ERROR en cosulta medico.<br/> SQL: ". $sql.' - '.$conexion->error;
}
?>
<div class="well well-sm">Cargado por: <strong><?= $row_medico['nombre']." ".$row_medico['apellido']. "</strong> - Matricula: <strong>". $row_medico['matricula'] ; ?></strong></div>
<h5><strong>Datos cargados</strong></h5>
<p class="text-justify">
<?= $ficha[$k][$l]['datos']; ?>
</p>
<h5><strong>Comentarios</strong></h5>
<p class="text-justify">
<?= $ficha[$k][$l]['comentario']; ?>
</p>
<h5><strong>Adjuntos</strong></h5>
<?
$sql = "SELECT * FROM mm_adjuntosficha WHERE ficha=" . $ficha[$k][$l]['id'];
if($result_adjunto = $conexion->query($sql)){
while ($row_adjunto = $result_adjunto->fetch_array(MYSQLI_ASSOC)){
echo "<p><a href='". $row_adjunto['archivo'] ."'>". substr($row_adjunto['archivo'], strpos($row_adjunto['archivo'], '/', 2)) ."</a></p>";
}
}else{
echo $sql.' - '.$conexion->error;
}
?>
</div>
</div>
</div>
<?
}
?>
</div>
</div>
<div class="panel-footer">
Clinical
</div>
</div>
</div>
</body>
</html>
<?
}else{
$mensajes[] = "Error al intentar cargar datos de Historias Clínicas.";
}
mysqli_close($conexion);
exit;
?>