X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/614fb545c1c1efce6cacf14b8c20c17032268604..1eece5e381b91b081446023edf4120c9f4e3dd33:/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 794dfdf..3bd2cae 100644
--- a/sistema/www/servicios/bandas/banda_agente.php
+++ b/sistema/www/servicios/bandas/banda_agente.php
@@ -8,6 +8,7 @@ require_once 'MECON/Dependencia.php';
require_once 'MECON/NovedadesDia.php';
require_once 'MECON/HTML/Tabla.php';
require_once 'BandasNovedades/AgenteBanda.php';
+require_once 'BANDAS/Actualizacion.php';
require_once 'BandasNovedades/HTML/TablaInfoMes.php';
require_once 'BandasNovedades/HTML/TablaReferencias.php';
require_once 'BandasNovedades/HTML/TablaInfoPersonal.php';
@@ -196,17 +197,9 @@ $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 = $DB->query($sql);
+ $FECHA=Actualizacion::UltimaFecha('DIARIO');
- if (DB::isError($result))
- trigger_error($result->getMessage("Query mal hecho"), E_USER_ERROR);
-
- $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,
+ $row = array( $IMG_notas,'Nota: Fecha de actualizaciĆ³n '.$FECHA->format('%d/%m/%y'),
$IMG_anterior->toHtml().' '.$link_volver->toHtml(),
$IMG_visto->toHtml()." accesos",
$IMG_visto->toHtml()." salidas autorizadas");