From 4a0a358c72ebb3b661ff17de2bf9e562710b3a8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Sklar?= Date: Fri, 3 Oct 2003 22:53:39 +0000 Subject: [PATCH] =?utf8?q?-=20Ahora=20muestra=20la=20fecha=20de=20actualiz?= =?utf8?q?aci=C3=B3n=20solamente=20si=20se=20consulta=20el=20mes=20en=20cu?= =?utf8?q?rso.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sistema/www/servicios/bandas/banda_agente.php | 36 ++++++++++++------- sistema/www/servicios/bandas/index.php | 2 +- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/sistema/www/servicios/bandas/banda_agente.php b/sistema/www/servicios/bandas/banda_agente.php index 67e61e9..8017c46 100644 --- a/sistema/www/servicios/bandas/banda_agente.php +++ b/sistema/www/servicios/bandas/banda_agente.php @@ -167,21 +167,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')); diff --git a/sistema/www/servicios/bandas/index.php b/sistema/www/servicios/bandas/index.php index dd51a41..38f1b90 100644 --- a/sistema/www/servicios/bandas/index.php +++ b/sistema/www/servicios/bandas/index.php @@ -51,7 +51,7 @@ if (DB::isError($DB)) { //CREO LOS OBJETOS NECESARIOS {{{ $TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'medio'); $MARCO = new HTML_DietMarco('servicios','Bandas Horarias'); -$FORM = new MECON_HTML_QuickForm('bandas', 'post', 'banda_agente', '', array ('onSubmit' => "return validar(this)", 'action' => '')); +$FORM = new MECON_HTML_QuickForm('bandas', 'post', 'banda_agente', '', array ('action' => '')); $FORM->renderer->setTable($TABLAFORM); $TABLA = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"'); $IMG = new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif'); -- 2.43.0