]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/accesos.php
Bugfixes y actualizacion de documentacion.
[mecon/intranet.git] / sistema / www / servicios / bandas / accesos.php
index 70c1c4116d6e588afa4973df3dd71a4db761cc43..9754ab87721a6f97bbdfbda6b365e7e2f3640e78 100644 (file)
@@ -12,19 +12,14 @@ if(!isset($_SESSION['documento']))
        die ('El usuario no se encuentra logueado en la Intranet');
 }
 
-//CREO LA CONEXION A LA BASE DE DATOS
-$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
-if (DB::isError($dbh)) {
-    die ($DB->getMessage());
-}
-
 $nrodoc = $_SESSION['documento'];
 $fecha = $_GET['fecha'];
 
 //CREO LOS OBJETOS NECESARIOS
-$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
 $pagina =& new HTML_Page(array(        'doctype'=>'HTML 4.01 Transitional',
                                                                'charset'=>'iso-8859-1'));
+$pagina->updateAttributes(array('onload'=>'javascript:window.print()'));
 $tabla =& new MECON_HTML_Tabla(array('width'=>'400'),'medio');
 $IMG =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif');
 $titulo =& new HTML_Table(array('width'=>'400','border'=>'0','class'=>'titulo'));
@@ -43,22 +38,26 @@ $fondo = '#FFFFFF';
 $dia = 0;
 $i = 0;
 $tipo_acceso_anterior = 0;
-foreach ($agente->getAccesos() as $a)
+if(count($agente->getAccesos()) > 0)
 {
-       $i++;
-       ($a['tipo_acceso']=='E')?$tipo_acceso='Entrada':$tipo_acceso='Salida';
-       $row = array($a['fecha'],$a['hora'],$tipo_acceso,$a['descripcion']);
-       $tabla->addRow($row,'comun');
-       if(!($dia == $a['fecha']))
+       foreach ($agente->getAccesos() as $a)
        {
-               ($fondo=='#CCCCCC')?$fondo='#FFFFFF':$fondo='#CCCCCC';
+               $i++;
+               ($a['tipo_acceso']=='E')?$tipo_acceso='Entrada':$tipo_acceso='Salida';
+               $row = array($a['fecha'],$a['hora'],$tipo_acceso,$a['descripcion']);
+               $tabla->addRow($row,'comun');
+               if(!($dia == $a['fecha']))
+               {
+                       ($fondo=='#CCCCCC')?$fondo='#FFFFFF':$fondo='#CCCCCC';
+               }
+               (($tipo_acceso_anterior != 0) and ($a['tipo_acceso']==$tipo_acceso_anterior))?$tabla->updateRowAttributes($i,array('bgcolor'=>'red')):$tabla->updateRowAttributes($i,array('bgcolor'=>$fondo));
+               $dia = $a['fecha'];
+               $tipo_acceso_anterior = $a['tipo_acceso'];
        }
-       (($tipo_acceso_anterior != 0) and ($a['tipo_acceso']==$tipo_acceso_anterior))?$tabla->updateRowAttributes($i,array('bgcolor'=>'red')):$tabla->updateRowAttributes($i,array('bgcolor'=>$fondo));
-       $dia = $a['fecha'];
-       $tipo_acceso_anterior = $a['tipo_acceso'];
 }
 
 /* Genero la página */
+$pagina->setTitle('Intranet');
 $pagina->addBodyContent($tabla);
 
 $pagina->display();