]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/banda_agente.php
- Se agrega el comportamiento especial para las paginas de la oanet:
[mecon/intranet.git] / sistema / www / servicios / bandas / banda_agente.php
index 794dfdffb94849d9b8e3c2f19c9a80888afe847b..968688ddbb03ec02594f81a4ea6282028a969532 100644 (file)
@@ -8,10 +8,30 @@ require_once 'MECON/Dependencia.php';
 require_once 'MECON/NovedadesDia.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'BandasNovedades/AgenteBanda.php';
+require_once 'BandasNovedades/Buscador.php';
+require_once 'BANDAS/Actualizacion.php';
 require_once 'BandasNovedades/HTML/TablaInfoMes.php';
 require_once 'BandasNovedades/HTML/TablaReferencias.php';
 require_once 'BandasNovedades/HTML/TablaInfoPersonal.php';
 
+
+//{{{ CHEQUEO SI SE ESTA ACTUALIZANDO LA INFORMACION EN ESTE MOMENTO
+if(BandasNovedades_Buscador::getFlag($DB))
+{
+       $HTML_Mensaje =& new HTML_Mensaje("alerta","No se puede mostrar la informacion porque está siendo actualizada",500);
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
+       $MARCO->addBodyContent($HTML_Mensaje);
+       $MARCO->display();
+       exit;
+}
+
+//}}}
+
 if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
 {
        header('Location: ../../servicios/');
@@ -196,17 +216,10 @@ $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);
-
-       if (DB::isError($result))
-               trigger_error($result->getMessage("Query mal hecho"), E_USER_ERROR);
-
-       $FECHA_ACTUALIZACION=$result->fetchRow(DB_FETCHMODE_ASSOC);
+       $FECHA=Actualizacion::UltimaFecha('DIARIO');
+        $FECHA=$FECHA->getPrevDay();
 
-       $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()." <a href=\"\" onClick=\"window.open('./accesos.php?nrodoc=".$nrodoc."&fecha=".$_POST['fecha']."','accesos','scrollbars=yes,width=450,height=500,screenX=10,screenY=10');return(false);\">accesos</a>",
                                        $IMG_visto->toHtml()." <a href=\"\" onClick=\"window.open('./salidas_autorizadas.php?nrodoc=".$nrodoc."&fecha=".$_POST['fecha']."','salidas_autorizadas','scrollbars=yes,width=450,height=500,screenX=10,screenY=10');return(false);\">salidas autorizadas</a>");