Viewing file: disciplinarios.php (3.31 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
п»ї<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Notificaciones</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="styles2.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="js/jquery.scrollShow.js"></script>
</head>
<body>
<h1 align="center">Notificaciones Control disciplinario</h1>
<p><br>
</p>
<h3 align="justify" style="color:#666">ArtГculo 107. NotificaciГіn por edicto. Los autos que deciden la apertura de indagaciГіn preliminar e investigaciГіn y fallos que no pudieren notificarse personalmente se notificarГЎn por edicto. Para tal efecto, una vez producida la decisiГіn, se citarГЎ inmediatamente al disciplinado, por un medio eficaz, a la entidad donde trabaja o a la Гєltima direcciГіn registrada en su hoja de vida o a la que aparezca en el proceso disciplinario, con el fin de notificarle el contenido de aquella y, si es sancionatoria, hacerle conocer los recursos que puede interponer. Se dejarГЎ constancia secretarial en el expediente sobre el envГo de la citaciГіn.
<br /></h3>
<?php // header( 'Content-type: text/html; charset=iso-8859-1' );
include ("conex.php");
$zone=3600*-5;
$hoy=gmdate("Y-m-d", time() + $zone);
//echo $date;
/* Control Disciplinario */
$order = " order by id desc ";
$sqlt = "select id,no,DATE_FORMAT(fecha,'%d-%m-%Y') AS fecha,resuelve,usuario,sector,tipo,DATE_FORMAT(fijacion,'%d-%m-%Y') AS fijacion,DATE_FORMAT(desfijacion,'%d-%m-%Y') AS desfijacion from notificaciones where tipo = 'DISCIPLINARIOS' and '$hoy' >= fijacion and '$hoy' <= desfijacion";
$sqldef=$sqlt.$order;
//echo "$sqldef";
$sql=mysql_query($sqldef,$con);
$num_rows = mysql_num_rows($sql);
//muestra los datos consultados
echo "<table>
<caption>
<h3>Control Disciplinario: $num_rows </h3>
<br />
<br />
</caption>
<thead>
<tr class='odd'>
<th scope='col' abbr='Home'><h5><span></span>Nombre(s)</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Auto No.</h5></th>
<th scope='col' abbr='Home'><h5><span></span>titulo</h5></th>
<th scope='col' abbr='Home'><h5><span></span>ExpediciГіn</h5></th>
<th scope='col' abbr='Home'><h5><span></span>FijaciГіn</h5></th>
<th scope='col' abbr='Home'><h5><span></span>DesfijaciГіn</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Archivo</h5></th>
</tr>
</thead>
<tfoot>";
while($row = mysql_fetch_array($sql)){
$cont=$cont+1;
if ($cont % 2 == 0)
$class= "class='odd'";
if ($cont % 2 == 1)
$class= "";
$year1=date("Y", strtotime($row[fecha]));
$ip = 'http://190.27.245.106/BLA';
$acto=strtoupper($table);
echo "
<tr $class>
<th>$row[usuario]</th>
<td>$row[no]</td>
<td>$row[resuelve]</td>
<td>$row[fecha]</td>
<td>$row[fijacion]</td>
<td>$row[desfijacion]</td>
<td><A href='$ip/resoluciones/Notificaciones/$row[tipo] $year1/$row[no].pdf' target=_blank><img src='images/pdf.gif' border='0' align='absmiddle' /></a></td></tr>
";
}
echo "</table>";
?>
</body>
</html>
|