From d922ac1c030244d755f84a80a55dbfdd26a4722b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Sklar?= Date: Tue, 30 Sep 2003 18:22:39 +0000 Subject: [PATCH] =?utf8?q?-Arregl=C3=A9=20un=20bug.=20Mostraba=20un=20erro?= =?utf8?q?r=20cuando=20el=20agente=20no=20ten=C3=ADa=20salidas=20autorizad?= =?utf8?q?as=20en=20el=20mes=20mostrado.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../servicios/bandas/salidas_autorizadas.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/sistema/www/servicios/bandas/salidas_autorizadas.php b/sistema/www/servicios/bandas/salidas_autorizadas.php index cf7002c..1f900fa 100644 --- a/sistema/www/servicios/bandas/salidas_autorizadas.php +++ b/sistema/www/servicios/bandas/salidas_autorizadas.php @@ -43,16 +43,20 @@ $tabla->addRow($row,array('titulo'=>1)); $fondo = '#FFFFFF'; $dia = 0; $i = 0; -foreach ($agente->obtenerParcialesMes(new date($fecha)) as $s) +$salidas = $agente->obtenerParcialesMes(new date($fecha)); +if($salidas) { - $i++; - $row = array($s['fecha'],$s['desde'],$s['hasta'],$s['descripcion']); - $tabla->addRow($row,'comun'); - if(!($dia == $s['fecha'])) + foreach ($salidas as $s) { - ($fondo=='#CCCCCC')?$fondo='#FFFFFF':$fondo='#CCCCCC'; + $i++; + $row = array($s['fecha'],$s['desde'],$s['hasta'],$s['descripcion']); + $tabla->addRow($row,'comun'); + if(!($dia == $s['fecha'])) + { + ($fondo=='#CCCCCC')?$fondo='#FFFFFF':$fondo='#CCCCCC'; + } + $dia = $s['fecha']; } - $dia = $s['fecha']; } /* Genero la página */ -- 2.43.0