File: /home/asjudine/www/consultar_atencion_sin_proceso.php
<?php
require_once("mainfile.php");
include ("config.php");
global $dbi;
require_once("Conectarse.php");
$perit = mysql_query('SELECT cedula,nombre,numerocontrato,tipocontrato,telefono, direccion, celular, ciudad FROM cartera_serviasjudinet WHERE cedula = "' . $_GET["cedula"] . '" ');
if ( (mysql_num_rows($perit) != 0))
{
list($cedula,$nombre_completo,$numero,$tipo,$telefono, $direccion, $celular, $ciudad) = mysql_fetch_row($perit);
}
$perit2 = mysql_query('SELECT cedula,nombre,numero_contrato_titular,tipo_contrato_titular ,telefono, direccion, celular, ciudad FROM beneficiarios
WHERE cedula = "' . $_GET["cedula"] . '" ');
if ( (mysql_num_rows($perit2) != 0))
{
list($cedula,$nombre_completo,$numero,$tipo,$telefono, $direccion, $celular, $ciudad) = mysql_fetch_row($perit2);
}
$per = mysql_query('SELECT cuenta_cobro, numero_carpeta, cedula, motivo, capital_recuperado, oficio_dev_num, fecha, unidad FROM devolucion_carpeta
WHERE cedula = "' . $_GET["id"] . '" and numero_carpeta = "' . $_GET["carpeta"] . '"');
if ( (mysql_num_rows($per) != 0))
{
list($cuenta_cobro, $num_carpeta, $cedula, $motivo, $capital_recuperado, $oficio_dev_num, $fecha_dev, $unidadd) = mysql_fetch_row($per);
$tres=substr($fecha_dev, 0, 4);
$dos=substr($fecha_dev, 5, 2);
$uno=substr($fecha_dev, 8, 2);
$fecha_dev = ($uno."-".$dos."-".$tres);
}
else
{
$num_carpeta = "";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.Estilo1 {font-family: "Arial Narrow"}
.Estilo2 {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.Estilo10 {font-weight: bold}
.Estilo17 {font-size: 14}
.Estilo18 {font-family: "Arial Narrow"; font-weight: bold; font-size: 14; }
.Estilo19 {font-family: "Arial Narrow"; font-weight: bold; }
.Estilo20 {font-family: "Arial Narrow"; font-size: 11; color: #000000; background-color: #FFFFCC;}
.Estilo21 {font-family: "Arial Narrow"; font-weight: bold; font-size: 11; color: #000000; background-color: #99FFFF;}
.Estilo24 {color: #FF0000}
.fecha {background-color: #CCFFCC; font-size: 12px; font-family: Arial; color: #000099; width:10px display: block;}
.lista { background-color:#99FFFF; font-family: Arial; font-size: 11px; color: #990000;}
-->
</style>
<script Language="JavaScript"><!--
function validar(formulario)
{
if (formulario.dia_act.value > 31)
{
alert("El número de día no se debe exceder de 31");
formulario.dia_act.focus();
return (false);
}
if (formulario.mes_act.value > 12)
{
alert("El número del mes no se debe exceder de 12");
formulario.mes_act.focus();
return (false);
}
return (true);
}
//--></script>
</head>
<body onload="document.formulario.cedula.focus()">
<form method="post" name="formulario" action="" onSubmit="return validar(this)">
<table width="745" border="0" align="center" cellpadding="3" cellspacing="3">
<tr valign="baseline" bgcolor="#0099FF">
<td colspan="6" align="right" nowrap><div align="center"><span class="Estilo2">CONSULTA DE DATOS ATENCIONES SIN PROCESOS</span></div></td>
</tr>
<tr valign="baseline" bgcolor="#0099FF">
<td colspan="6" align="right" nowrap><div align="center" class="Estilo2"><script languaje="JavaScript">Mostrar_Fecha()</script></div></td>
</tr>
<tr valign="baseline" bgcolor="#0099FF">
<td width="192" align="right" nowrap><span class="Estilo18">Cédula, apellidos y nombres</span></td>
<td><input name="identi" type="text" id="identi" value="<?php echo $cedula; ?>" size="8" maxlength="8" readonly=""></td>
<td colspan="4"><input name="nombre_completo" type="text" id="nombre_completo3" value="<?php echo $nombre_completo; ?>" size="50" maxlength="50" readonly=""></td>
</tr>
<tr valign="baseline" bgcolor="#0099FF">
<td><div align="left" class="Estilo4 Estilo10 Estilo17 Estilo1">
<div align="right"><span class="Estilo5">Número de Contrato:</span></div>
</div></td>
<td width="101"><input name="numero" type="text" id="numero" value="<?php echo $numero; ?>" size="6" maxlength="6" readonly=""></td>
<td width="198"><div align="right" class="Estilo18">Tipo:</div></td>
<td width="31"><input name="tipo" type="text" id="tipo" value="<?php echo $tipo; ?>" size="4" maxlength="4" readonly=""></td>
</tr>
<tr valign="baseline" bgcolor="#0099FF">
<td align="right" nowrap><div align="left" class="Estilo4 Estilo10 Estilo17 Estilo1">
<div align="right"><span class="Estilo5">Telefono </span></div>
</div></td>
<td><input name="telefono" type="text" id="telefono" value="<?php echo $telefono; ?>" size="10" maxlength="10" readonly=""></td>
<td><div align="right" class="Estilo18">Direccion: </div></td>
<td colspan="3"><input name="direccion" type="text" id="direccion" value="<?php echo $direccion; ?>" size="35" maxlength="10" readonly=""></td>
</tr>
<tr valign="baseline" bgcolor="#0099FF">
<td align="right" nowrap><div align="left" class="Estilo4 Estilo10 Estilo17 Estilo1">
<div align="right"><span class="Estilo5">Ciudad</span></div>
</div></td>
<td><input name="ciudad" type="text" id="ciudad" value="<?php echo $ciudad; ?>" size="10" maxlength="10" readonly=""></td>
<td><div align="right" class="Estilo18">Celular: </div></td>
<td colspan="3"><input name="celular" type="text" id="celular" value="<?php echo $celular; ?>" size="15" maxlength="10" readonly=""></td>
</tr>
</table>
</form>
<?php
require_once("mainfile.php");
include ("config.php");
global $dbi;
$i=0;
echo "<table width=750 border=1 align=center cellpadding=1 cellspacing=1>
<tr align=center>
<td width='34' class=Estilo21>#</td>
<td width='400' class=Estilo21>ACTUACION</td>
<td width='60' class=Estilo21>FECHA</td>
<td width='200' class=Estilo21>NOMBRE DEL FUNCIONARIO</td>
<td width='34' class=Estilo21>CODIGO</td>
</tr>";
$result = mysql_query('SELECT id,fecha_servicio,funcionario,proceso, accion_tomada FROM atenciones_sin_proceso
WHERE id = "' . $_GET["id"] . '" and cedula = "' . $_GET["cedula"] . '" ');
if (!$result) {
die('Invalid query: ' . mysql_error());
}
if($result)
{
while(list($id, $fecha, $funcionario,$proceso, $accion_tomada) = mysql_fetch_row($result))
{
$i=$i + 1;
$tres=substr($fecha, 0, 4);
$dos=substr($fecha, 5, 2);
$uno=substr($fecha, 8, 2);
$fecha = ($uno."-".$dos."-".$tres);
$user = mysql_query('SELECT Nombre_Completo FROM Usuarios WHERE Cedula = "' . "$funcionario". '" ');
if (!$user) {
die('Invalid query user: ' . mysql_error());
}
if($result){list($nom) = mysql_fetch_row($user);}
echo "<tr class=Estilo20>
<td align=center>$id</td>
<td><a top=50,left=100,toolbar=no,scrollbars=no,width=790,height=521,status=yes>$accion_tomada</a></td>
<td align=center>$fecha</td>
<td align=center>$nom</td>
<td align=center>$proceso</td></tr>";
} //Terminación del ciclo while
echo "</tr></table>";
}
?>
</body>
</html>