]> git.llucax.com Git - mecon/intranet.git/blob - 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
1 <?
2 require_once 'HTML_DietMarco.php';
3 require_once 'HTML_Mensaje.php';
4 require_once 'HTML/Table.php';
5 require_once 'MECON/HTML/Image.php';
6 require_once 'MECON/HTML/Link.php';
7 require_once 'MECON/Dependencia.php';
8 require_once 'MECON/NovedadesDia.php';
9 require_once 'MECON/HTML/Tabla.php';
10 require_once 'BandasNovedades/AgenteBanda.php';
11 require_once 'BandasNovedades/Buscador.php';
12 require_once 'BANDAS/Actualizacion.php';
13 require_once 'BandasNovedades/HTML/TablaInfoMes.php';
14 require_once 'BandasNovedades/HTML/TablaReferencias.php';
15 require_once 'BandasNovedades/HTML/TablaInfoPersonal.php';
16
17
18 //{{{ CHEQUEO SI SE ESTA ACTUALIZANDO LA INFORMACION EN ESTE MOMENTO
19 if(BandasNovedades_Buscador::getFlag($DB))
20 {
21         $HTML_Mensaje =& new HTML_Mensaje("alerta","No se puede mostrar la informacion porque está siendo actualizada",500);
22         $MARCO->addBodyContent('<br>');
23         $MARCO->addBodyContent('<br>');
24         $MARCO->addBodyContent('<br>');
25         $MARCO->addBodyContent('<br>');
26         $MARCO->addBodyContent('<br>');
27         $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
28         $MARCO->addBodyContent($HTML_Mensaje);
29         $MARCO->display();
30         exit;
31 }
32
33 //}}}
34
35 if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
36 {
37         header('Location: ../../servicios/');
38 }
39
40 //Seteo las variables generales
41 $nrodoc = $_SESSION['documento'];
42 setlocale (LC_ALL, 'es_AR');
43 $fecha = $_POST['fecha'];
44 $fecha_spliteada = split('-',$fecha);
45
46
47 /* Instancio DietMarco que sirve para mostrar la pagina dentro del marco de Intranet*/
48 $m =& new HTML_DietMarco('servicios','Bandas Horarias');
49 //$m->addTitle('Bandas Horarias');
50 $m->addStyleSheet('../../css/servicios_bandas.css');
51
52 $agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
53
54 if(!$agente->buscarAgente($nrodoc))
55 {
56         $HTML_Mensaje =& new HTML_Mensaje("alerta","El agente no está en las bases de RRHH",450);
57         $m->addStyleSheet($HTML_Mensaje->getCSS());
58         $m->addBodyContent($HTML_Mensaje);
59         $m->display();
60         exit;
61 }
62
63
64 /* Si el agente es un contratado entonces no muestro la info */
65 if(preg_match('/^CON/',$agente->getTipo()))
66 {
67         $HTML_Mensaje =& new HTML_Mensaje("alerta","Información no disponible",300);
68         $m->addStyleSheet($HTML_Mensaje->getCSS());
69         $m->addBodyContent($HTML_Mensaje);
70         $m->display();
71         exit;
72 }
73
74
75 /* Instancio un objeto Table para el cuerpo de la pagina*/
76 $tabla_cuerpo =& new HTML_Table(array('width'=>'760','border'=>'0','cellspacing'=>'0','cellpadding'=>'0'));
77
78 /* Encabezado propio de la pagina */
79 $IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif',
80                                                  '',
81                                                 array('alt'=>'>>'));
82
83 $IMG =& new MECON_HTML_Image('../../images/servicios_imprimir1.gif',
84                                                  '',
85                                                 array('width'=>'24','height'=>'24','alt'=>'imprimir'));
86
87
88 $row_cuerpo = array(    $IMG_flecha_naranja->toHtml().' '.$agente->getNombre(),
89                                                 "<a href=\"\" onClick=\"window.open('./impresion_banda_agente.php?fecha=".
90                                                 $_POST['fecha']."','imprimir',
91                                                 'scrollbars=yes,width=780,height=500,screenX=10,screenY=10');
92                                                 return(false);\">Página de Impresión</a>",
93                                                 $IMG->toHtml());
94 $tabla_cuerpo->addRow($row_cuerpo,array('height'=>'24'));
95 $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
96                                                 '',
97                                                 array('width'=>'586','height'=>'1','alt'=>'blanco','align'=>'top'));
98 $IMG2 =& new MECON_HTML_Image('/MECON/images/blanco.gif',
99                                                 '',
100                                                 array('width'=>'150','height'=>'1','alt'=>'blanco','align'=>'top'));
101 $IMG3 =& new MECON_HTML_Image('/MECON/images/blanco.gif',
102                                                 '',
103                                                 array('width'=>'24','height'=>'1','alt'=>'blanco','align'=>'top'));
104
105 $row_cuerpo = array($IMG->toHtml(),$IMG2->toHtml(),$IMG3->toHtml());
106
107 $tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FF9900',
108                                                                         'height'=>'1'));
109 $tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FFFFFF',
110                                                                         'height'=>'10'));
111
112 $tabla_cuerpo->updateCellAttributes(0,
113                                                                         0,
114                                                                         array('width'=>'586','class'=>'titulo_tres'));
115 $tabla_cuerpo->updateCellAttributes(0,
116                                                                         1,
117                                                                         array('width'=>'150','class'=>'imprimir_bandas'));
118 $tabla_cuerpo->updateCellAttributes(0,
119                                                                         2,
120                                                                         array('width'=>'24','class'=>'imprimir_bandas'));
121 $tabla_cuerpo->updateCellAttributes(1,
122                                                                         0,
123                                                                         array('height'=>'1'));
124 $tabla_cuerpo->updateCellAttributes(1,
125                                                                         1,
126                                                                         array('height'=>'1'));
127 $tabla_cuerpo->updateCellAttributes(1,
128                                                                         2,
129                                                                         array('height'=>'1'));
130
131 $m->addBodyContent($tabla_cuerpo);
132
133 /* Fin del encabezado propio de la pagina*/
134 /* 
135 Aca empieza las tablas con la informacion personal del agente y
136 con las referencias de cada color de las celdas
137 */
138
139 /* Armo la tabla de la información personal */
140
141 $tabla_info_personal =& new BandasNovedades_HTML_TablaInfoPersonal($DB,$agente,'oscuro');
142 $m->addStyleSheet($tabla_info_personal->getCSS());
143
144
145 /* Agrego la tabla de información personal al cuerpo de la página*/
146 $t =& new HTML_Table(array('width'=>'760',
147                                                         'border'=>'0',
148                                                         'cellspacing'=>'0',
149                                                         'cellpadding'=>'0'));
150
151 $t->addRow(array($tabla_info_personal),array('colspan'=>'3'));
152 $t->addRow(array('&nbsp;'),array('colspan'=>'3'));
153
154 /* Agrego las tablas de referencia al cuerpo */
155 $row = array();
156
157 if(BandasNovedades_AgenteBanda::tieneCredencial($DB,$_SESSION['documento'],new Date($fecha)))
158 {
159         /* Armo la tabla con la gilla horaria*/
160         $tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscuro');
161
162         /* Armo la tabla de referencias */
163         $tabla_referencias =& new BandasNovedades_HTML_TablaReferencias('oscuro');
164         
165         $row = array($tabla_info,'&nbsp',$tabla_referencias);
166 }else
167 {
168         $HTML_Mensaje =& new HTML_Mensaje("alerta","El agente no tiene credencial asignada en este mes",450);
169         $m->addStyleSheet($HTML_Mensaje->getCSS());
170         $row = array($HTML_Mensaje);
171 }
172
173 $t->addRow($row,array('valign'=>'top'));
174
175 if($agente->getReduccionHoraria())
176 {
177         $IMG_reduccion_horaria =& new MECON_HTML_Image('../../images/servicios_bandas_red_hs.gif',
178                                                                                                         '',
179                                                                                                         array('alt'=>'Agente con reducción horaria'));
180         $row = array('','',$IMG_reduccion_horaria->toHtml());
181 }else
182 {
183         $row = array('','','');
184 }
185 $t->addRow($row,array('valign'=>'top','align'=>'center'));
186 $t->updateCellAttributes(2,0,array('rowspan'=>2));
187
188 /* Esta fila contiene las referencias */
189 $row_cuerpo = array($t);
190 $m->addBodyContent($t);
191
192
193 $m->addBodyContent('<BR>');
194
195 /* Comienzo a mostrar los links con las notas, accesos y salidas autorizadas*/
196 $tabla_notas =& new HTML_Table(array('width'=>'760',
197                                                                         'border'=>'0',
198                                                                         'cellspacing'=>'0',
199                                                                         'cellpadding'=>'0',
200                                                                         'bgcolor'=>'#003366'));
201
202 $IMG_notas =& new MECON_HTML_Image('../../images/servicios_nota.gif',
203                                                          '',
204                                                         array('width'=>'24','height'=>'24','valign'=>'top'));
205
206 $IMG_anterior =& new MECON_HTML_Image('../../images/servicios_bandas_anterior.gif',
207                                                                 '',
208                                                                 array('width'=>'16','height'=>'10','valign'=>'top'));
209                                                                 
210 $IMG_visto =& new MECON_HTML_Image('../../images/servicios_visto.gif',
211                                                                 '',
212                                                                 array('width'=>'16','height'=>'10','valign'=>'top'));
213 $link_volver =& new MECON_HTML_LINK('./','volver');
214
215 $MES_ACTUAL =& new date();
216 $FECHA_PEDIDA =& new date($fecha);
217 if($MES_ACTUAL->getmonth()==$FECHA_PEDIDA->getmonth() && $MES_ACTUAL->getyear()==$FECHA_PEDIDA->getyear())
218 {
219         $FECHA=Actualizacion::UltimaFecha('DIARIO');
220         $FECHA=$FECHA->getPrevDay();
221
222         $row = array(   $IMG_notas,'Nota: Fecha de actualización '.$FECHA->format('%d/%m/%y'),
223                                         $IMG_anterior->toHtml().' '.$link_volver->toHtml(),
224                                         $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>",
225                                         $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>");
226 }else
227 {
228         $row = array(   '','',
229                                         $IMG_anterior->toHtml().' '.$link_volver->toHtml(),
230                                         $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>",
231                                         $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>");
232
233 }
234
235 $tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
236                                                                                 'bgcolor'=>'#FFFFFF'));
237
238 $tabla_notas->updateCellAttributes(0,0,array(   'width'=>'25','height'=>'30',
239                                                                                                 'align'=>'left','class'=>'aclarar'));
240 $tabla_notas->updateCellAttributes(0,1,array(   'width'=>'325',
241                                                                                                 'align'=>'right','class'=>'aclarar'));
242 $tabla_notas->updateCellAttributes(0,2,array(   'width'=>'145',
243                                                                                                 'align'=>'right','class'=>'imprimir_bandas'));
244 $tabla_notas->updateCellAttributes(0,3,array(   'width'=>'80',
245                                                                                                 'align'=>'right','class'=>'imprimir_bandas'));
246 $tabla_notas->updateCellAttributes(0,4,array(   'width'=>'125',
247                                                                                                 'align'=>'right','class'=>'imprimir_bandas'));
248
249 $m->addBodyContent($tabla_notas);
250 $m->display();
251 ?>
252