X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e450087505ddedfbca4f3b83e3aaf6bb6968d17c..9f4ece77af1889cdfed30fa93349fa8ecc5b0caf:/sistema/www/servicios/bandas/banda_agente.php
diff --git a/sistema/www/servicios/bandas/banda_agente.php b/sistema/www/servicios/bandas/banda_agente.php
index 67e61e9..d457071 100644
--- a/sistema/www/servicios/bandas/banda_agente.php
+++ b/sistema/www/servicios/bandas/banda_agente.php
@@ -112,8 +112,13 @@ $m->addStyleSheet($tabla_info_personal->getCSS());
/* Agrego la tabla de información personal al cuerpo de la página*/
-$m->addBodyContent($tabla_info_personal);
-$m->addBodyContent('
');
+$t =& new HTML_Table(array('width'=>'760',
+ 'border'=>'0',
+ 'cellspacing'=>'0',
+ 'cellpadding'=>'0'));
+
+$t->addRow(array($tabla_info_personal),array('colspan'=>'3'));
+$t->addRow(array(''),array('colspan'=>'3'));
/* Armo la tabla con la gilla horaria*/
$tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscuro');
@@ -122,10 +127,6 @@ $tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscu
$tabla_referencias =& new BandasNovedades_HTML_TablaReferencias('oscuro');
/* Agrego las tablas de referencia al cuerpo */
-$t =& new HTML_Table(array('width'=>'760',
- 'border'=>'0',
- 'cellspacing'=>'0',
- 'cellpadding'=>'0'));
$row = array();
$row = array($tabla_info,' ',$tabla_referencias);
$t->addRow($row,array('valign'=>'top'));
@@ -167,21 +168,33 @@ $IMG_visto =& new MECON_HTML_Image('../../images/servicios_visto.gif',
array('width'=>'16','height'=>'10','valign'=>'top'));
$link_volver =& new MECON_HTML_LINK('./','volver');
-$sql = "Select fecha from FechaActualizacion where tipoActualizacion='DIARIO'
- order by fecha desc limit 1";
-$result = $dbh->query($sql);
+$MES_ACTUAL =& new date();
+$FECHA_PEDIDA =& new date($fecha);
+if($MES_ACTUAL->getmonth()==$FECHA_PEDIDA->getmonth() && $MES_ACTUAL->getyear()==$FECHA_PEDIDA->getyear())
+{
+ $sql = "Select fecha from FechaActualizacion where tipoActualizacion='DIARIO'
+ order by fecha desc limit 1";
+ $result = $dbh->query($sql);
+
+ if (DB::isError($result))
+ die ($result->getMessage("Query mal hecho"));
-if (DB::isError($result))
- die ($result->getMessage("Query mal hecho"));
+ $FECHA_ACTUALIZACION=$result->fetchRow(DB_FETCHMODE_ASSOC);
-$FECHA_ACTUALIZACION=$result->fetchRow(DB_FETCHMODE_ASSOC);
+ $FECHA=preg_replace('/(\d\d\d\d)(\d\d)(\d\d)(.*)/','$3/$2/$1',$FECHA_ACTUALIZACION['fecha']);
+ $row = array( $IMG_notas,'Nota: Fecha de actualización '.$FECHA,
+ $IMG_anterior->toHtml().' '.$link_volver->toHtml(),
+ $IMG_visto->toHtml()." accesos",
+ $IMG_visto->toHtml()." salidas autorizadas");
+}else
+{
+ $row = array( '','',
+ $IMG_anterior->toHtml().' '.$link_volver->toHtml(),
+ $IMG_visto->toHtml()." accesos",
+ $IMG_visto->toHtml()." salidas autorizadas");
+
+}
-$FECHA=preg_replace('/(\d\d\d\d)(\d\d)(\d\d)(.*)/','$3/$2/$1',$FECHA_ACTUALIZACION['fecha']);
-$row = array( $IMG_notas,'Nota: Fecha de actualización '.$FECHA,
- $IMG_anterior->toHtml().' '.$link_volver->toHtml(),
- $IMG_visto->toHtml()." accesos",
- $IMG_visto->toHtml()." salidas autorizadas");
-
$tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
'bgcolor'=>'#FFFFFF'));