]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/index.php
Cambios en los nombres de los estilos de servicios, para evitar colisiones.
[mecon/intranet.git] / sistema / www / servicios / bandas / index.php
index 791a9410fa144b449e886844ee52f7adf2b497c6..38f1b901d6c012cb71a7a8696c6e65892552a203 100644 (file)
@@ -28,12 +28,19 @@ $Id: agenda1.php 64 2003-08-21 18:48:28Z mmarre $
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
-require_once '../../../local_lib/Servicios/Bandas/Buscador.php';
+require_once 'BandasNovedades/Buscador.php';
 require_once 'MECON/HTML/QuickForm.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'DB.php';
 //}}}
 
+//CHEQUEO QUE EL USUARIO YA ESTÉ LOGUEADO {{{
+if(!isset($_SESSION['documento']))
+{
+       header('Location: ../../servicios.php');
+}
+//}}}
+
 //CREO LA CONEXION A LA BASE DE DATOS {{{
 $DB = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
 if (DB::isError($DB)) {
@@ -42,16 +49,16 @@ if (DB::isError($DB)) {
 //}}}
 
 //CREO LOS OBJETOS NECESARIOS {{{
-$TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'servicio');
+$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');
 //}}}
 //OBTENGO LOS DATOS DE LAS BASES {{{
 setlocale (LC_ALL, 'es_AR');
-$RESULT_MESES = Servicios_Bandas_Buscador::getMeses($DB);
+$RESULT_MESES = BandasNovedades_Buscador::getMeses($DB);
 $MESES = array();
 foreach ($RESULT_MESES as $m)
 {
@@ -62,7 +69,7 @@ foreach ($RESULT_MESES as $m)
 
 //}}}
 //AGREGO LOS ELEMENTOS AL FORM {{{
-$header        =& $FORM->addElement('header', 'comun'      , 'Ingreso de fecha');
+$header        =& $FORM->addElement('header', 'cabecera'      , $IMG->toHtml().'Ingreso de fecha');
 $edificio      =& $FORM->addElement('select', 'fecha'   , 'Meses Disponibles'   , $MESES, array('size' => '1'));
 //Agrego el botón del formulario
 $grupo   = array();
@@ -72,51 +79,17 @@ $botones  =& $FORM->addGroup($grupo, 'botones');
 //}}}
 
 //ACOMODO EL FORM {{{
-$MARCO->addStyleSheet('../../css/servicios_bandas.css'); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO
+$MARCO->addStyleSheet($TABLAFORM->getCSS()); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO
 //}}}
 
 
 //ARMO LA TABLA {{{
 $TABLA->addRow(array($FORM));
 
-//}}}
-//AGREGO EL JAVASCRIPT DE VALIDACION {{{
-//Este js esta copiado del epl original, ya que con los campos del formulario
-//llamados de la misma manera las reglas de validacion ya se cumplen.
-$JS = <<<EOT
-function validar(theForm)
-{
-if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
-&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
-&& theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
-{
-    alert('Indique una opción de búsqueda');theForm.interno.focus();return(false);
-}
-
-if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
-&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
-&& theForm.edificio.options[theForm.edificio.selectedIndex].value!="-")
-{
-    alert('Indique un párametro adicional para la búsqueda');theForm.edificio.focus();return(false);
-}
-
-if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value!="" && theForm.oficina.value==""
-&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--') 
-&& theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
-{
-    alert('Indique el edificio');theForm.edificio.focus();return(false);
-}
-
-if (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
-   {theForm.dependencia.value='-';}
-
-return(true);
-}
-EOT;
-//$MARCO->addScriptDeclaration($JS);
 //}}}
 //MUESTRO LA INFO {{{
 $MARCO->addTitle('Bandas Horarias');
+$MARCO->addBodyContent('<BR>');
 $MARCO->addBodyContent($TABLA);
 $MARCO->display();
 //}}}