]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios/bandas/index.php
- Se agrega el chequeo para saber si se esta actualizando la informacion de
[mecon/intranet.git] / sistema / www / servicios / bandas / index.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 foldmethod=marker:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     agenda
5 -------------------------------------------------------------------------------
6 This file is part of agenda.
7
8 agenda is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 agenda is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: lun ago 11 14:10:35 ART 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id: agenda1.php 64 2003-08-21 18:48:28Z mmarre $
25 -----------------------------------------------------------------------------*/
26
27 //REQUIRE ONCE {{{
28 require_once 'HTML/Table.php';
29 require_once 'HTML_DietMarco.php';
30 require_once 'HTML_Mensaje.php';
31 require_once 'BandasNovedades/Buscador.php';
32 require_once 'MECON/HTML/Tabla.php';
33 require_once 'MECON/HTML/QuickForm.php';
34 require_once 'MECON/HTML/Image.php';
35 require_once 'MECON/Agente.php';
36 //}}}
37
38 //CHEQUEO QUE EL USUARIO YA ESTÉ LOGUEADO {{{
39 if(!isset($_SESSION['documento']))
40 {
41         header('Location: ../../servicios.php');
42 }
43 //}}}
44
45 //{{{ INSTANCIO EL MARCO
46 $MARCO =& new HTML_DietMarco('servicios','Bandas Horarias');
47 //}}}
48
49 //{{{ CHEQUEO SI SE ESTA ACTUALIZANDO LA INFORMACION EN ESTE MOMENTO
50 if(BandasNovedades_Buscador::getFlag($DB))
51 {
52         $HTML_Mensaje =& new HTML_Mensaje("alerta","No se puede mostrar la informacion porque está siendo actualizada",550);
53         $MARCO->addBodyContent('<br>');
54         $MARCO->addBodyContent('<br>');
55         $MARCO->addBodyContent('<br>');
56         $MARCO->addBodyContent('<br>');
57         $MARCO->addBodyContent('<br>');
58         $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
59         $MARCO->addBodyContent($HTML_Mensaje);
60         $MARCO->display();
61         exit;
62 }
63
64 //}}}
65
66 //{{{ CHEQUEO SI EL USUARIO NO ES CONTRATADO O NO ESTA EN LAS BASES DE RRHH
67 $agente =& new MECON_Agente($DB, $_SESSION['documento']);
68
69 if(!$agente->buscarAgente($_SESSION['documento']))
70 {
71         $HTML_Mensaje =& new HTML_Mensaje("alerta","El agente no está en las bases de RRHH",450);
72         $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
73         $MARCO->addBodyContent($HTML_Mensaje);
74         $MARCO->display();
75         exit;
76 }
77
78 /* Si el agente es un contratado entonces no muestro la info */
79 if(preg_match('/^CON/',$agente->getTipo()))
80 {
81         $HTML_Mensaje =& new HTML_Mensaje("alerta","Información no disponible",300);
82         $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
83         $MARCO->addBodyContent($HTML_Mensaje);
84         $MARCO->display();
85         exit;
86 }
87
88 //}}}
89
90 //CREO LOS OBJETOS NECESARIOS PARA EL RESTO DE LA PAGINA{{{
91 $TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'medio');
92 $FORM      = new MECON_HTML_QuickForm('bandas', 'post', 'banda_agente', '', array ('action' => ''));
93 $FORM->renderer->setTable($TABLAFORM);
94 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
95 $IMG      = new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif');
96 //}}}
97 //OBTENGO LOS DATOS DE LAS BASES {{{
98 setlocale (LC_ALL, 'es_AR');
99 $RESULT_MESES = BandasNovedades_Buscador::getMeses($DB);
100 $MESES = array();
101 foreach ($RESULT_MESES as $m)
102 {
103         $mes = strftime("%B", mktime(0,0,0,$m[0],1,$m[1]));
104     ($m[0]<10)?$m[0]='0'.$m[0]:0;
105         $MESES[$m[1].'-'.$m[0].'-01'] = $m[1].'-'.$mes;
106 }
107
108 //}}}
109 //AGREGO LOS ELEMENTOS AL FORM {{{
110 $header        =& $FORM->addElement('header', 'cabecera'      , $IMG->toHtml().'Ingreso de fecha');
111 $edificio      =& $FORM->addElement('select', 'fecha'   , 'Meses Disponibles'   , $MESES, array('size' => '1'));
112 //Agrego el botón del formulario
113 $grupo   = array();
114 $grupo[] =& HTML_QuickForm::createElement('submit', 'aceptar' , 'Buscar');
115 $botones  =& $FORM->addGroup($grupo, 'botones');
116
117 //}}}
118
119 //ACOMODO EL FORM {{{
120 $MARCO->addStyleSheet($TABLAFORM->getCSS()); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO
121 //}}}
122
123
124 //ARMO LA TABLA {{{
125 $TABLA->addRow(array($FORM));
126
127 //}}}
128 //MUESTRO LA INFO {{{
129 //$MARCO->addTitle('Bandas Horarias');
130 $MARCO->addBodyContent('<BR>');
131 $MARCO->addBodyContent($TABLA);
132 $MARCO->display();
133 //}}}
134 ?>