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';
18 //{{{ CHEQUEO SI SE ESTA ACTUALIZANDO LA INFORMACION EN ESTE MOMENTO
19 if(BandasNovedades_Buscador::getFlag($DB))
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);
35 if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
37 header('Location: ../../servicios/');
40 //Seteo las variables generales
41 $nrodoc = $_SESSION['documento'];
42 setlocale (LC_ALL, 'es_AR');
43 $fecha = $_POST['fecha'];
44 $fecha_spliteada = split('-',$fecha);
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');
52 $agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
54 if(!$agente->buscarAgente($nrodoc))
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);
64 /* Si el agente es un contratado entonces no muestro la info */
65 if(preg_match('/^CON/',$agente->getTipo()))
67 $HTML_Mensaje =& new HTML_Mensaje("alerta","Información no disponible",300);
68 $m->addStyleSheet($HTML_Mensaje->getCSS());
69 $m->addBodyContent($HTML_Mensaje);
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'));
78 /* Encabezado propio de la pagina */
79 $IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif',
83 $IMG =& new MECON_HTML_Image('../../images/servicios_imprimir1.gif',
85 array('width'=>'24','height'=>'24','alt'=>'imprimir'));
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>",
94 $tabla_cuerpo->addRow($row_cuerpo,array('height'=>'24'));
95 $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
97 array('width'=>'586','height'=>'1','alt'=>'blanco','align'=>'top'));
98 $IMG2 =& new MECON_HTML_Image('/MECON/images/blanco.gif',
100 array('width'=>'150','height'=>'1','alt'=>'blanco','align'=>'top'));
101 $IMG3 =& new MECON_HTML_Image('/MECON/images/blanco.gif',
103 array('width'=>'24','height'=>'1','alt'=>'blanco','align'=>'top'));
105 $row_cuerpo = array($IMG->toHtml(),$IMG2->toHtml(),$IMG3->toHtml());
107 $tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FF9900',
109 $tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FFFFFF',
112 $tabla_cuerpo->updateCellAttributes(0,
114 array('width'=>'586','class'=>'titulo_tres'));
115 $tabla_cuerpo->updateCellAttributes(0,
117 array('width'=>'150','class'=>'imprimir_bandas'));
118 $tabla_cuerpo->updateCellAttributes(0,
120 array('width'=>'24','class'=>'imprimir_bandas'));
121 $tabla_cuerpo->updateCellAttributes(1,
123 array('height'=>'1'));
124 $tabla_cuerpo->updateCellAttributes(1,
126 array('height'=>'1'));
127 $tabla_cuerpo->updateCellAttributes(1,
129 array('height'=>'1'));
131 $m->addBodyContent($tabla_cuerpo);
133 /* Fin del encabezado propio de la pagina*/
135 Aca empieza las tablas con la informacion personal del agente y
136 con las referencias de cada color de las celdas
139 /* Armo la tabla de la información personal */
141 $tabla_info_personal =& new BandasNovedades_HTML_TablaInfoPersonal($DB,$agente,'oscuro');
142 $m->addStyleSheet($tabla_info_personal->getCSS());
145 /* Agrego la tabla de información personal al cuerpo de la página*/
146 $t =& new HTML_Table(array('width'=>'760',
149 'cellpadding'=>'0'));
151 $t->addRow(array($tabla_info_personal),array('colspan'=>'3'));
152 $t->addRow(array(' '),array('colspan'=>'3'));
154 /* Agrego las tablas de referencia al cuerpo */
157 if(BandasNovedades_AgenteBanda::tieneCredencial($DB,$_SESSION['documento'],new Date($fecha)))
159 /* Armo la tabla con la gilla horaria*/
160 $tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscuro');
162 /* Armo la tabla de referencias */
163 $tabla_referencias =& new BandasNovedades_HTML_TablaReferencias('oscuro');
165 $row = array($tabla_info,' ',$tabla_referencias);
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);
173 $t->addRow($row,array('valign'=>'top'));
175 if($agente->getReduccionHoraria())
177 $IMG_reduccion_horaria =& new MECON_HTML_Image('../../images/servicios_bandas_red_hs.gif',
179 array('alt'=>'Agente con reducción horaria'));
180 $row = array('','',$IMG_reduccion_horaria->toHtml());
183 $row = array('','','');
185 $t->addRow($row,array('valign'=>'top','align'=>'center'));
186 $t->updateCellAttributes(2,0,array('rowspan'=>2));
188 /* Esta fila contiene las referencias */
189 $row_cuerpo = array($t);
190 $m->addBodyContent($t);
193 $m->addBodyContent('<BR>');
195 /* Comienzo a mostrar los links con las notas, accesos y salidas autorizadas*/
196 $tabla_notas =& new HTML_Table(array('width'=>'760',
200 'bgcolor'=>'#003366'));
202 $IMG_notas =& new MECON_HTML_Image('../../images/servicios_nota.gif',
204 array('width'=>'24','height'=>'24','valign'=>'top'));
206 $IMG_anterior =& new MECON_HTML_Image('../../images/servicios_bandas_anterior.gif',
208 array('width'=>'16','height'=>'10','valign'=>'top'));
210 $IMG_visto =& new MECON_HTML_Image('../../images/servicios_visto.gif',
212 array('width'=>'16','height'=>'10','valign'=>'top'));
213 $link_volver =& new MECON_HTML_LINK('./','volver');
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())
219 $FECHA=Actualizacion::UltimaFecha('DIARIO');
220 $FECHA=$FECHA->getPrevDay();
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>");
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>");
235 $tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
236 'bgcolor'=>'#FFFFFF'));
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'));
249 $m->addBodyContent($tabla_notas);