]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios/bandas/accesos.php
- Se agrega el comportamiento especial para las paginas de la oanet:
[mecon/intranet.git] / sistema / www / servicios / bandas / accesos.php
1 <?
2 require_once 'MECON/HTML/Page.php';
3 require_once 'MECON/HTML/Image.php';
4 require_once 'MECON/HTML/Error.php';
5 require_once 'MECON/HTML/Link.php';
6 require_once 'MECON/Dependencia.php';
7 require_once 'BandasNovedades/AgenteBanda.php';
8 require_once 'BandasNovedades/Buscador.php';
9 require_once 'MECON/HTML/Tabla.php';
10 require_once 'HTML/Table.php';
11 require_once 'HTML_Mensaje.php';
12
13
14 //{{{ CHEQUEO SI SE ESTA ACTUALIZANDO LA INFORMACION EN ESTE MOMENTO
15 if(BandasNovedades_Buscador::getFlag($DB))
16 {
17         $HTML_Mensaje =& new HTML_Mensaje("alerta","No se puede mostrar la informacion porque está siendo actualizada",550);
18         $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
19         $MARCO->addBodyContent('<br>');
20         $MARCO->addBodyContent('<br>');
21         $MARCO->addBodyContent('<br>');
22         $MARCO->addBodyContent('<br>');
23         $MARCO->addBodyContent('<br>');
24         $MARCO->addBodyContent($HTML_Mensaje);
25         $MARCO->display();
26         exit;
27 }
28
29 //}}}
30
31
32 $nrodoc = $_GET['nrodoc'];
33 $fecha = new date($_GET['fecha']);
34
35 //CREO LOS OBJETOS NECESARIOS
36 $agente =& new BandasNovedades_AgenteBanda($nrodoc,$fecha,$DB);
37 $pagina =& new MECON_HTML_Page();
38 $pagina->setTitle('Intranet');
39
40 $pagina->addStyleSheet('../../css/servicios_bandas.css');
41
42 /* Encabezado propio de la pagina */
43 $tabla_encabezado =& new HTML_Table(array('width'=>'400','border'=>'0','cellspacing'=>'0','cellpadding'=>'0','align'=>'center'));
44 $IMG_flecha =& new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif',
45                                                  '',
46                                                 array('alt'=>'>>'));
47
48 $IMG =& new MECON_HTML_Image('/MECON/images/general_impri_azul.gif',
49                                                  '',
50                                                 array('alt'=>'imprimir'));
51 if(isset($_GET['imprimir']))
52 {
53         $row_encabezado = array($agente->getNombre());
54         $tabla_encabezado->addRow($row_encabezado,array('height'=>'24',
55                                                                                                         'width'=>'400',
56                                                                                                         'class'=>'imprimir_bandas_izquierda'));
57         $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
58                                                         '',
59                                                         array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top'));
60
61         $row_cuerpo = array($IMG->toHtml());
62         $tabla_encabezado->addRow($row_cuerpo,array('bgcolor'=>'#CCCCCC','height'=>'1'));
63         $estilo = "impresion";
64         $pagina->updateAttributes(array('onload'=>'javascript:window.print()'));
65 }else
66 {
67     $row_encabezado = array(    $IMG_flecha->toHtml().' '.$agente->getNombre(),
68             "<a
69             href=\"./accesos.php?nrodoc=".$_GET['nrodoc']."&fecha=".$_GET['fecha']."&imprimir=1\">Imprimir</a>
70             &nbsp;".$IMG->toHtml());
71
72     $tabla_encabezado->addRow($row_encabezado,array('height'=>'24'));
73
74     $tabla_encabezado->updateColAttributes(0,
75             array('width'=>'80%','class'=>'dependencia'));
76     $tabla_encabezado->updateColAttributes(1,
77             array('width'=>'20%','class'=>'imprimir_bandas'));
78
79     $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
80             '',
81             array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top'));
82
83     $row_encabezado = array($IMG->toHtml());
84     $tabla_encabezado->addRow($row_encabezado,array('colspan'=>'2','bgcolor'=>'#FF9900','height'=>'1'));
85     
86     $estilo = "oscuro";
87 }
88
89
90 $pagina->addBodyContent($tabla_encabezado);
91
92 //{{{ Muestro el mes con el que estoy trabajando
93 setlocale (LC_ALL, 'es_AR');
94 $MES_PEDIDO_EN_LETRAS = strftime("%B", mktime(0,0,0,$fecha->format('%m'),1,$fecha->format('%Y')));
95
96 $TABLA_FECHA =& new HTML_Table( array(
97                                                                 'width'=>'300',
98                                                                 'align'=>'center',
99                                                                 'border'=>'0',
100                                                                 'cellspacing'=>'0',
101                                                                 'cellpadding'=>'0'));
102                                                                 
103 $TABLA_MES =& new MECON_HTML_Tabla(array('width'=>'100'),$estilo);
104 $TABLA_MES->addRow(array('Mes',$MES_PEDIDO_EN_LETRAS),array('width'=>'50%'));
105 $TABLA_MES->updateColAttributes(0,array('titulo'=>1));
106
107 $TABLA_ANIO =& new MECON_HTML_Tabla(array('width'=>'100'),$estilo);
108 $TABLA_ANIO->addRow(array('Año',$fecha->format('%Y')),array('width'=>'50%'));
109 $TABLA_ANIO->updateColAttributes(0,array('titulo'=>1));
110
111 $TABLA_FECHA->addRow(array($TABLA_MES,'&nbsp;',$TABLA_ANIO),array('width'=>'100'));
112
113 $pagina->addStyleSheet($TABLA_MES->getCSS());
114 $pagina->addBodyContent('<BR>');
115 $pagina->addBodyContent($TABLA_FECHA);
116 $pagina->addBodyContent('<BR>');
117 //}}}
118
119
120 $tabla =& new MECON_HTML_Tabla(array('width'=>'400'),$estilo);
121 $IMG =& new MECON_HTML_Image('/MECON/images/general_flecha_doble.gif');
122 $titulo =& new HTML_Table(array('width'=>'400','border'=>'0','class'=>'titulo'));
123
124 $pagina->addStyleSheet($tabla->getCSS());
125
126 /* Armo el copete*/
127 $row = array($IMG->toHtml().' '.$agente->getNombre());
128 $titulo->addRow($row,array('align'=>'left'));
129
130 $fondo = '#FFFFFF';
131 $dia = 0;
132 $i = 0;
133 $tipo_acceso_anterior = 0;
134 if(count($agente->getAccesos()) > 0)
135 {
136
137         /* Armo la tabla */
138         $row = array('Fecha','Hora','Tipo de acceso','Puerta');
139         $tabla->addRow($row,array('cabecera'=>1));
140
141         foreach ($agente->getAccesos() as $a)
142         {
143                 $i++;
144                 ($a['tipo_acceso']=='E')?$tipo_acceso='Entrada':$tipo_acceso='Salida';
145                 $row = array($a['fecha'],$a['hora'],$tipo_acceso,$a['descripcion']);
146                 $tabla->addRow($row,'comun');
147                 if(!($dia == $a['fecha']))
148                 {
149                         ($fondo=='#CCCCCC')?$fondo='#FFFFFF':$fondo='#CCCCCC';
150                 }
151                 (($tipo_acceso_anterior != 0) and ($a['tipo_acceso']==$tipo_acceso_anterior))?$tabla->updateRowAttributes($i,array('bgcolor'=>'red')):$tabla->updateRowAttributes($i,array('bgcolor'=>$fondo));
152                 $dia = $a['fecha'];
153                 $tipo_acceso_anterior = $a['tipo_acceso'];
154         }
155
156         /* Genero la página */
157         $pagina->addBodyContent($tabla);
158 }else
159 {
160         $pagina->addBodyContent(new MECON_HTML_Error("El agente no tiene registrado ningún acceso en este mes"));
161 }
162
163
164 $pagina->display();
165 ?>