]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/accesos.php
- Modifique la pagina que genera el pdf con la banda del agente
[mecon/intranet.git] / sistema / www / servicios / bandas / accesos.php
index 70c1c4116d6e588afa4973df3dd71a4db761cc43..1faf1bf55ac40d386c7c5a06dd2a096e576f6600 100644 (file)
@@ -43,19 +43,22 @@ $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 */