-
Notifications
You must be signed in to change notification settings - Fork 0
/
procesos.php
executable file
·554 lines (507 loc) · 22.5 KB
/
procesos.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
<?php require_once('db/conexion.php'); session_start(); include('inc_fechas.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Procesos</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include('validateform.php');
if ( $_GET['id']!="" ) // muestra al empleado seleccionada
?>
<!-- CALENDARIO -->
<!-- calendar stylesheet -->
<link rel="stylesheet" type="text/css" media="all" href="calendar/calendar-system.css" title="System" />
<!-- main calendar program -->
<script type="text/javascript" src="calendar/calendar.js"></script>
<!-- language for the calendar --><!-- NO ME FUNCIONA EN ESPA�OL. Mich-->
<script type="text/javascript" src="calendar/lang/calendar-en.js"></script>
<!-- the following script defines the Calendar.setup helper function, which makes adding a calendar a matter of 1 or 2 lines of code. -->
<script type="text/javascript" src="calendar/calendar-setup.js"></script>
<!-- CALENDARIO FIN-->
<!-- MOSTRAR ELEMENTOS DEL FORM (solo muestra Inputs y Botones -->
<script language="JavaScript" type="text/JavaScript">
function MostrarElementosForm(numformulario){ // by Mich. numformulario n� de la matriz del formularios por ej. forms[0], forms[1]
for ( var i=0; i < document.forms[numformulario].elements.length; i++ ){
var elemento = document.forms[numformulario].elements[i].style.visibility = "visible";
if ( elemento.type=="text" ) {
elemento.visibility = visible
}
}
}
function mOvr(src,clrOver) {
if (!src.contains(event.fromElement)) {
src.bgColor = clrOver;
src.borderColor = '';
}
}
function mOut(src,clrIn) {
if (!src.contains(event.toElement)) {
src.style.cursor = 'default';
src.bgColor = clrIn;
src.borderColor = '';
}
}
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
</script>
<!-- SALTO ENTRE CAMPOS PULSANDO ENTER -->
<script language="javascript" type="text/javascript">
<!--
//nombre del primer campo en la secuencia
siguienteCampo = "filtro"
//nombre del formlario
nombreForm = "filtro"
//funcion que gestiona el evento
function TeclaPulsada( e ) {
if ( window.event != null) //IE4+
tecla = window.event.keyCode;
else if ( e != null ) //N4+ o W3C compatibles
tecla = e.which;
else
return;
if (tecla == 13) { //se pulso enter
if ( siguienteCampo == 'fin' ) { //fin de la secuencia, hace el submit
alert('Envio del formulario.') //eliminar este alert para uso normal
return false //sustituir por return true para hacer el submit
} else { //da el foco al siguiente campo
eval('document.' + nombreForm + '.' + siguienteCampo + '.focus()')
return false
}
}
}
document.onkeydown = TeclaPulsada; //asigna el evento pulsacion tecla a la funcion
if (document.captureEvents) //netscape es especial: requiere activar la captura del evento
document.captureEvents(Event.KEYDOWN)
//-->
</script>
<script language="JavaScript" type="text/javascript">
function envia(){
if ((document.forms.datos.filtro.checked==true)&&document.forms.datos.filtro.checked==true) alert('debe seleccionar una sóla casilla')
else if(document.forms.datos.filtro.checked==true) {
document.forms.datos.action="procesos.php?menu=proc";
document.forms.datos.target="der";
}
else if (document.forms.datos.filtro.checked==true) document.forms.datos.action="procesos.php?menu=proc"
//else alert('debe seleccionar un checkbox')
document.forms.datos.submit()
}
</script>
</head>
<body>
<?php
if ( isset($_SESSION['valid_admin']) ) { ?>
<?php include('menu.php'); ?>
<?php
//MODIFICACION //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if($_POST['modificar'] =='Modificar' ){
$s = $_POST['id_p'];
$code= sprintf("*P%05s*", $s); // el relleno con ceros funciona con cadenas tambien
$sql_m = " UPDATE procesos SET empleado='".$_POST['empleado']."', auto='".$_POST['auto']."', operacion='".$_POST['operacion']."',
dia='".$_POST['dia']."', inicio='".$_POST['inicio']."', fin='".$_POST['fin']."' WHERE procesos_id = ".$_POST['id_p'];
$res_m = $conn->query($sql_m);
// echo $sql_m;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// BAJA ///////////////////////////////////////////////////////////////////////////////////////////////////////////
if($_POST['si'] =='Si' ){
$sql_p = " UPDATE procesos SET publico_p= '0' where procesos_id = ".$_POST['id_baja'];
$res_p = $conn->query($sql_p);
//echo $sql_p;
} ?>
<?php // ALTA ////////////////////////////////////////
if($_POST['save']=='Guardar') {
$sql_max = " SELECT max(empleado_id) AS m FROM empleados ";
$res_max = $conn->query($sql_max);
$row_max = $res_max->fetch_assoc();
$id_code = $row_max['m'] +1;
$s = $id_code;
$code= sprintf("*P%05s*", $s); // el relleno con ceros funciona con cadenas tambien
$sql = " INSERT INTO procesos VALUES (NULL,'".$_POST['empleado']."' ";
$sql .= ", '".$_POST['auto']."' ";
$sql .= ", '".$_POST['operacion']."' ";
$sql .= ", '".$_POST['dia']."' ";
$sql .= ", '".$_POST['inicio']."' ";
$sql .= ", '".$_POST['fin']."' ";
$sql .= ", '".$code."' ";
$sql .= ", '1' ";
$sql .= " ) ";
$res = $conn->query($sql);
// echo $sql;
} ?>
<div align="center"><br>
<fieldset style="width:770px">
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0" id="buscar">
<tr>
<td width="60" height="50" align="center"><span class="buscarLegend">Filtro:</span></td>
<form name="datos">
<td width="496"><table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="5%"><input name="filtro" type="radio" onClick="envia()" value="hoy" <?php if($_GET['filtro']=='hoy'){ ?>checked<?php } ?>></td>
<td width="20%">Hoy</td>
<td width="5%"><input name="filtro" onClick="envia()" type="radio" value="mes" <?php if($_GET['filtro']=='mes'){ ?>checked<?php } ?>></td>
<td width="36%">Ultimo Mes </td>
<td width="5%"><input name="filtro" onClick="envia()" type="radio" value="todo" <?php if($_GET['filtro']=='todo'){ ?>checked<?php } ?>></td>
<td width="29%">Todo</td>
</tr>
</table></td>
</form>
<td width="214"><?php if ( substr($_GET['mensaje'],0,5)=="ERROR" ) $color_error = "#FF0000"; // pone el mensaje de ERROR en rojo ?>
<font color="<?=$color_error;?>"> <b><?=$_GET['mensaje'];?>
<a href="procesos.php?menu=proc&alta=n">Alta</a></b></font></td>
</tr>
</table>
</fieldset>
</div>
<?php if($_POST['baja'] =='Baja' ){ ?>
<form action="procesos.php?menu=proc" method="post" name="baja" id="baja">
<table width="325" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="247" height="46">Confirma la Baja del Vehículo:
<?=$_POST['marca'];?>
<?=$_POST['modelo'];?>
<input name="id_baja" type="hidden" id="id_baja" value="<?=$_POST['id_p'];?>"></td>
</tr>
<tr>
<td><table width="65%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="50%" height="30" align="center" valign="middle"><input name="si" type="submit" id="si" value="Si"></td>
<td width="50%" height="30" align="center" valign="middle"><input name="Submit2" type="submit" id="Submit" value="No"></td>
</tr>
</table></td>
</tr>
</table>
</form>
<p>
<?php } ?>
</p>
<?php if($_GET['alta'] =='n' ){ ?>
<form name="form1" method="post" action="">
<table width="770" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#195089">
<tr>
<td><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" id="procesos">
<tr>
<td class="tdBordeCelesteInfBG">Empleado</td>
<td height="25" class="tdBordeCelesteInfBG">Auto</td>
<td align="center" class="tdBordeCelesteInfBG">Operación</td>
<td align="center" class="tdBordeCelesteInfBG">Dia</td>
<td align="center" class="tdBordeCelesteInfBG">Inicio</td>
<td align="center" class="tdBordeCelesteInfBG">Fin</td>
</tr>
<tr class="textazul">
<td align="center" valign="middle" >
<select name="empleado" id="empleado">
<option value="0" selected>Seleccionar</option>
<?php
$sql = "SELECT * FROM empleados WHERE publico_e = 1 ORDER BY nombre_e ASC ";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ) { ?>
<option value="<?=$row['empleado_id'] ?>"><?=$row['apellido_e']?></option>
<?php $i++;
} ?>
</select>
</td>
<td height="10" >
<select name="auto" id="auto">
<option value="0" selected>Seleccionar</option>
<?php
$sql = "SELECT * FROM altas where publico_a=1 order by marca asc";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ){ ?>
<option value="<?= $row['alta_id'] ?>" ><?=$row['marca']?>, <?=$row['modelo']?>, <?=$row['matricula']?></option>
<?php $i++;
} ?>
</select>
</td>
<td align="center" >
<select name="operacion" id="operacion">
<option value="0" selected>Seleccionar</option>
<?php
$sql = "SELECT * FROM operaciones where publico_o=1 order by nombre_o asc";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ){ ?>
<option value="<?= $row['operaciones_id'] ?>"><?=$row['nombre_o']?></option>
<?php $i++;
} ?>
</select>
</td>
<td align="center" valign="middle" ><input name="dia" type="text" id="dia" size="15" />
<button type="reset" id="f_trigger_a">...</button>
<script type="text/javascript">
Calendar.setup({
inputField : "dia", // id of the input field
ifFormat : "%Y-%m-%d ", // format of the input field
button : "f_trigger_a", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script></td>
<td align="center" valign="middle" ><input name="inicio" type="text" id="inicio" size="15" />
<button type="reset" id="f_trigger_b">...</button>
<script type="text/javascript">
Calendar.setup({
inputField : "inicio", // id of the input field
ifFormat : "%Y-%m-%d %I:%M:%S", // format of the input field
button : "f_trigger_b", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script></td>
<td align="center" valign="middle" ><input name="fin" type="text" id="fin" size="15" />
<button type="reset" id="f_trigger_c">...</button>
<script type="text/javascript">
Calendar.setup({
inputField : "fin", // id of the input field
ifFormat : "%Y-%m-%d %I:%M:%S", // format of the input field
button : "f_trigger_c", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script></td>
</tr>
</table></td>
</tr>
</table>
<div align="center">
<input name="save" type="submit" id="save" value="Guardar">
</div>
</form><?php } ?>
<?php
if ( $_GET['id']!="" ) { // muestra la empleado seleccionada
$sql_proceso = " SELECT * FROM procesos WHERE procesos_id = ".$_GET['id']; // NO HACE FALTA OPTIMIZAR XQ FILTRA UN SOLO REGISTRO
$res_proceso = $conn->query($sql_proceso);
$row_proceso = $res_proceso->fetch_assoc();
?>
<form action="procesos.php?menu=proc&filtro=1" method="post" name="saveProc" id="saveProc">
<input name="id_p" type="hidden" id="id_p" value="<?=$_GET['id'];?>">
<table width="770" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#195089">
<tr>
<td><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" id="empleado">
<tr>
<td class="tdBordeCelesteInfBG"> Empleado</td>
<td height="25" class="tdBordeCelesteInfBG"> Auto</td>
<td class="tdBordeCelesteInfBG"> Operación</td>
<td class="tdBordeCelesteInfBG"> Dia</td>
<td class="tdBordeCelesteInfBG"> Inicio</td>
<td class="tdBordeCelesteInfBG"> Fin</td>
</tr>
<tr class="textazul" >
<td align="center" valign="middle"><select name="empleado" id="empleado">
<?php
$sql = "SELECT * FROM empleados where publico_e=1 order by nombre_e asc";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ){
?>
<option value="<?= $row['empleado_id'] ?>" title="<?=$row['apellido_e'].' '.$row['nombre_e'].' ('.$row['empleado_id'].')'; ?>"
<?php if($row_proceso['empleado']==$row['empleado_id']){ echo'selected';}?> ><?=substr($row['apellido_e'],0,10);?></option>
<?php
$i++;
} ?>
</select></td>
<td height="10" ><select name="auto" class="" id="select2" >
<?php
$sql = "SELECT * FROM altas where publico_a=1 order by marca asc";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ){
?>
<option value="<?= $row['alta_id'] ?>" title="<?=$row['marca'].' '.$row['modelo'].' ('.$row['matricula'].')'; ?>"
<?php if($row_proceso['auto']==$row['alta_id']){ echo'selected';}?>><?=substr($row['marca'].' '.$row['modelo'].' '.$row['matricula'],0,20);?></option>
<?php
$i++;
}
?>
</select></td>
<td><select name="operacion" id="select3">
<?php
$sql = "SELECT * FROM operaciones where publico_o=1 order by nombre_o asc";
$result = $conn->query($sql);
$i = 0;
while( $row = $result->fetch_assoc() ){ ?>
<option value="<?= $row['operaciones_id'] ?>" title="<?=$row['nombre_o']?>"
<?php if($row_proceso['operacion']==$row['operaciones_id']){ echo'selected';}?> readly><?=substr($row['nombre_o'],0,10)?></option>
<?php
$i++;
} ?>
</select> </td>
<td valign="middle" >
<input name="dia" type="text" id="f_date_a" value="<?=($row_proceso['dia']);?>" size="8" />
<script type="text/javascript">
Calendar.setup({
inputField : "f_date_a", // id of the input field
ifFormat : "%Y-%m-%d ", // format of the input field
button : "f_date_a", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script> </td>
<td valign="middle" ><input name="inicio" type="text" id="f_date_b" value="<?=$row_proceso['inicio'];?>" size="16" />
<script type="text/javascript">
Calendar.setup({
inputField : "f_date_b", // id of the input field
ifFormat : "%Y-%m-%d %I:%M:%S", // format of the input field
button : "f_date_b", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script> </td>
<td valign="middle" ><input name="fin" type="text" id="f_date_c" value="<?=$row_proceso['fin'];?>" size="16" />
<script type="text/javascript">
Calendar.setup({
inputField : "f_date_c", // id of the input field
ifFormat : "%Y-%m-%d %I:%M:%S", // format of the input field
button : "f_date_c", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script> </td>
</tr>
</table>
</td>
</tr>
</table>
<div align="center"><br>
<input name="modificar" type="submit" id="modificar" value="Modificar">
<input name="baja" type="submit" id="baja" value="Baja">
</div>
</form>
<?php
define (__TRACE_ENABLED__, false);
define (__DEBUG_ENABLED__, false);
require("barcode/barcode.php");
require("barcode/i25object.php");
require("barcode/c39object.php");
require("barcode/c128aobject.php");
require("barcode/c128bobject.php");
require("barcode/c128cobject.php");
$barcode2 = $row_proceso['code_p'];
//echo $barcode2;
/* Default value */
if (!isset($output)) $output = "png";
if (!isset($barcode)) $barcode = "1255";
if (!isset($type)) $type = "C128B";
if (!isset($width)) $width = "260";
if (!isset($height)) $height = "80";
if (!isset($xres)) $xres = "2";
if (!isset($font)) $font = "5";
if (!isset($stretchtext)) $stretchtext = "on";
if (!isset($drawtext)) $drawtext = "on";
/*********************************/
if (isset($barcode) && strlen($barcode2)>0) {
$style = BCS_ALIGN_CENTER;
$style |= ($output == "png" ) ? BCS_IMAGE_PNG : 0;
$style |= ($output == "jpeg") ? BCS_IMAGE_JPEG : 0;
$style |= ($border == "on" ) ? BCS_BORDER : 0;
$style |= ($drawtext== "on" ) ? BCS_DRAW_TEXT : 0;
$style |= ($stretchtext== "on" ) ? BCS_STRETCH_TEXT : 0;
$style |= ($negative== "on" ) ? BCS_REVERSE_COLOR : 0;
switch ($type)
{
case "I25":
$obj = new I25Object(250, 120, $style, $barcode2);
break;
case "C39":
$obj = new C39Object(50, 120, $style, $barcode2);
break;
case "C128A":
$obj = new C128AObject(250, 120, $style, $barcode2);
break;
case "C128B":
$obj = new C128BObject(250, 120, $style, $barcode2);
break;
case "C128C":
$obj = new C128CObject(250, 120, $style, $barcode2);
break;
default:
$obj = false;
}
if ($obj) {
if ($obj->DrawObject($xres)) {
echo "<table align='center'><tr><td><img src='./barcode/image.php?code=".$barcode2."&style=".$style."&type=".$type."&width=".$width."&height=".$height."&xres=".$xres."&font=".$font."'></td></tr></table>";
} else echo "<table align='center'><tr><td><font color='#FF0000'>".($obj->GetError())."</font></td></tr></table>";
}
} ?>
<p><?php
} ?>
<br>
<?php
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if($_POST['baja']!='Baja' && $_GET['alta']!='n' && $_GET['id']<='0' ){
$sql = "SELECT * FROM procesos, empleados, altas, operaciones ";
// BUSCAR ///////////////////////////////////////////////////////////////
if( $_GET['filtro']=="1" ) // SIN FILTRO
$sql .= " WHERE procesos.dia = '' "; //
if( $_GET['filtro']=="todo" ) // BUSCA TODO
$sql .= " WHERE procesos.dia >= '0000-00-00' "; //
if( $_GET['filtro']=="hoy" ) // BUSCA BUSCA REGISTROS DEL DIA
$sql .= " WHERE procesos.dia = ".date("'Y-m-d'");
if( $_GET['filtro']=="mes" ) {
$sql .= " WHERE procesos.dia > '".date('Y-m')."-01' "; // BUSCA BUSCA REGISTROS DEL MES
$sql .= " AND procesos.dia < '".date('Y-m')."-32' ";
}
$sql .= " AND procesos.operacion = operaciones.operaciones_id AND procesos.auto = altas.alta_id
AND procesos.empleado = empleados.empleado_id AND procesos.publico_p = '1' ";
$res = $conn->query($sql);
// echo $sql;
?>
</p>
<table width="770" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#195089">
<tr>
<td><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" id="empleado">
<tr>
<td class="tdBordeCelesteInfBG">Empleado</td>
<td height="25" class="tdBordeCelesteInfBG">Auto</td>
<td class="tdBordeCelesteInfBG">Operación</td>
<td class="tdBordeCelesteInfBG">Dia</td>
<td class="tdBordeCelesteInfBG">Inicio</td>
<td class="tdBordeCelesteInfBG">Fin</td>
</tr>
<?php for ( $i=0; $i < $res->num_rows; $i++ ) {
$row = $res->fetch_assoc();
if ( ($i%2)==0 ) { $fondo="#FFFFFF"; } else { $fondo="#E6E6E6"; }
?>
<tr bgcolor="<?=$fondo;?>" class="textazul" onMouseOver="mOvr(this,'#CAE4FF');" onMouseOut="mOut(this,'<?=$fondo;?>');">
<td height="30">
<b><a href="procesos.php?menu=proc&id=<?=$row['procesos_id']; ?>" title="Ver proceso ID: <?=$row['procesos_id']; ?>">
<?=strtoupper($row['apellido_e']).'<br>'.strtoupper($row['nombre_e']); ?></a> </b></td>
<td class="tdBordeGrisIzq">
<span title="<?=($row['orden']?'OB '.$row['orden']:'')?> <?=($row['asistencia_t']?'ATO '.$row['asistencia_t']:'')?>"><b>
<?=$row['marca']?>
<?=$row['modelo']?>
<?=$row['matricula']?>
</b></span>
</td>
<td class="tdBordeGrisIzq">
<b><span title="<?=$row['nombre_o']?>"><?=substr($row['nombre_o'],0,10); ?></span></b></td>
<td class="tdBordeGrisIzq"><b><?=$row['dia']; ?></b></td>
<td class="tdBordeGrisIzq"><b><?=$row['inicio']; ?></b></td>
<td class="tdBordeGrisIzq"><b>
<a href="procesos.php?menu=proc&id=<?=$row['procesos_id']; ?>"
title="Ver"><?php if ($row['fin']!=0) echo $row['fin']; else echo 'Finalizar'; ?></a></b>
</td>
<?php include('inc_estado.php'); ?>
</tr>
<tr bgcolor="#CCCCCC">
<td height="1" colspan="6"></td>
</tr>
<?php } ?>
</table></td>
</tr>
</table>
<?php echo '<br><div align="center">'.$res->num_rows.' Resultados</div>';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} else { // fin valid_admin
echo '<meta http-equiv="refresh" content="0;URL=admin.php">';
} ?>
</body>
</html>