]> git.llucax.com Git - mecon/intranet.git/commitdiff
- Se agrega el chequeo para saber si se esta actualizando la informacion de
authorLeandro Lucarella <llucax@gmail.com>
Thu, 24 Jun 2004 22:29:53 +0000 (22:29 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 24 Jun 2004 22:29:53 +0000 (22:29 +0000)
  bandas horarias

sistema/www/servicios/bandas/accesos.php
sistema/www/servicios/bandas/banda_agente.php
sistema/www/servicios/bandas/index.php
sistema/www/servicios/bandas/nov_dia.php
sistema/www/servicios/bandas/salidas_autorizadas.php

index 5fa9c992e3cf21bae7df312fadbfd0918127d661..72c026e0b44b394cdb897019e2004f2c80b18d27 100644 (file)
@@ -5,10 +5,29 @@ require_once 'MECON/HTML/Error.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/Dependencia.php';
 require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/Dependencia.php';
 require_once 'BandasNovedades/AgenteBanda.php';
+require_once 'BandasNovedades/Buscador.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.php';
+require_once 'HTML_Mensaje.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",550);
+       $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent($HTML_Mensaje);
+       $MARCO->display();
+       exit;
+}
+
+//}}}
+
 
 $nrodoc = $_GET['nrodoc'];
 $fecha = new date($_GET['fecha']);
 
 $nrodoc = $_GET['nrodoc'];
 $fecha = new date($_GET['fecha']);
index 8bb090cbb64dfcd0b2ed194ab316df1c7e41eceb..968688ddbb03ec02594f81a4ea6282028a969532 100644 (file)
@@ -8,11 +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 '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';
 
 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/');
 if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
 {
        header('Location: ../../servicios/');
index 5f032a647a808c3466e7016a3f7c13ec276548ae..6743352b69047cba18fb33e84c8b9aab510cc9b2 100644 (file)
@@ -46,6 +46,23 @@ if(!isset($_SESSION['documento']))
 $MARCO =& new HTML_DietMarco('servicios','Bandas Horarias');
 //}}}
 
 $MARCO =& new HTML_DietMarco('servicios','Bandas Horarias');
 //}}}
 
+//{{{ 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",550);
+       $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;
+}
+
+//}}}
+
 //{{{ CHEQUEO SI EL USUARIO NO ES CONTRATADO O NO ESTA EN LAS BASES DE RRHH
 $agente =& new MECON_Agente($DB, $_SESSION['documento']);
 
 //{{{ CHEQUEO SI EL USUARIO NO ES CONTRATADO O NO ESTA EN LAS BASES DE RRHH
 $agente =& new MECON_Agente($DB, $_SESSION['documento']);
 
index 45711075f6f7451b9f1bfe3f32242fde9683cd35..f097ef8aaa2fe7c9d33c6b75bd45d719016d3dec 100644 (file)
@@ -5,8 +5,27 @@ require_once 'MECON/HTML/Link.php';
 require_once 'MECON/Dependencia.php';
 require_once 'MECON/NovedadesDia.php';
 require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'MECON/Dependencia.php';
 require_once 'MECON/NovedadesDia.php';
 require_once 'BandasNovedades/AgenteBanda.php';
+require_once 'BandasNovedades/Buscador.php';
 require_once 'MECON/HTML/Tabla.php';
 
 require_once 'MECON/HTML/Tabla.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",550);
+       $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent('<br>');
+       $MARCO->addBodyContent($HTML_Mensaje);
+       $MARCO->display();
+       exit;
+}
+
+//}}}
+
+
 if(!isset($_SESSION['documento'])) {
     header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
     exit;
 if(!isset($_SESSION['documento'])) {
     header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
     exit;
index d0323c17d2c7ca3b0c3017b8466abd7fcbe94882..617e18138fc267b7b7f7492c706a8936abaa5bbc 100644 (file)
@@ -3,11 +3,30 @@ require_once 'MECON/HTML/Page.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Error.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Error.php';
+require_once 'BandasNovedades/Buscador.php';
 require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'BandasNovedades/Agente.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.php';
 
 require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'BandasNovedades/Agente.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.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",550);
+       $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'])) {
     header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
     exit;
 if(!isset($_SESSION['documento'])) {
     header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
     exit;