]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/accesos.php
- Saque la impresion automatica de la pagina de accesos.
[mecon/intranet.git] / sistema / www / servicios / bandas / accesos.php
index e06f3272b1656494ae313d9db64f39f8ef35b8e1..a0dd47bd37e3f93ecfb4a239e0223153ac97002a 100644 (file)
 <?
-require_once 'HTML/Page.php';
+require_once 'MECON/HTML/Page.php';
 require_once 'MECON/HTML/Image.php';
+require_once 'MECON/HTML/Error.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/Dependencia.php';
 require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.php';
 
-if(!isset($_SESSION['documento'])) {
-    header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
-    exit;
-}
 
-$nrodoc = $_SESSION['documento'];
-$fecha = $_GET['fecha'];
+
+$nrodoc = $_GET['nrodoc'];
+$fecha = new date($_GET['fecha']);
 
 //CREO LOS OBJETOS NECESARIOS
-$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
-$pagina =& new HTML_Page(array(        'doctype'=>'HTML 4.01 Transitional',
-                                                               'charset'=>'iso-8859-1'));
-$pagina->updateAttributes(array('onload'=>'javascript:window.print()'));
-$tabla =& new MECON_HTML_Tabla(array('width'=>'400'),'medio');
-$IMG =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif');
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,$fecha,$DB);
+$pagina =& new MECON_HTML_Page();
+$pagina->setTitle('Intranet');
+
+$pagina->addStyleSheet('../../css/servicios_bandas.css');
+
+/* Encabezado propio de la pagina */
+$tabla_encabezado =& new HTML_Table(array('width'=>'400','border'=>'0','cellspacing'=>'0','cellpadding'=>'0','align'=>'center'));
+$IMG_flecha =& new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif',
+                                                '',
+                                               array('alt'=>'>>'));
+
+$IMG =& new MECON_HTML_Image('/MECON/images/general_impri_azul.gif',
+                                                '',
+                                               array('alt'=>'imprimir'));
+if(isset($_GET['imprimir']))
+{
+       $row_encabezado = array($agente->getNombre());
+       $tabla_encabezado->addRow($row_encabezado,array('height'=>'24',
+                                                                                                       'width'=>'400',
+                                                                                                       'class'=>'imprimir_bandas_izquierda'));
+       $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
+                                                       '',
+                                                       array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top'));
+
+       $row_cuerpo = array($IMG->toHtml());
+       $tabla_encabezado->addRow($row_cuerpo,array('bgcolor'=>'#CCCCCC','height'=>'1'));
+       $estilo = "impresion";
+       $pagina->updateAttributes(array('onload'=>'javascript:window.print()'));
+}else
+{
+       $row_encabezado = array(        $IMG_flecha->toHtml().' '.$agente->getNombre(),
+                                               "<a href=\"./accesos.php?nrodoc=".$_GET['nrodoc']."&fecha=".$_GET['fecha']."&imprimir=1\">Imprimir</a>",
+                                               $IMG->toHtml());
+
+       $tabla_encabezado->addRow($row_encabezado,array('height'=>'24'));
+       $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif',
+                                                       '',
+                                                       array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top'));
+
+       $row_encabezado = array($IMG->toHtml());
+       $tabla_encabezado->addRow($row_encabezado,array('colspan'=>'3','bgcolor'=>'#FF9900','height'=>'1'));
+       
+       $tabla_encabezado->updateCellAttributes(0,
+                                                                               0,
+                                                                               array('width'=>'276','class'=>'dependencia'));
+       $tabla_encabezado->updateCellAttributes(0,
+                                                                               1,
+                                                                               array('width'=>'100','class'=>'imprimir_bandas'));
+       $tabla_encabezado->updateCellAttributes(0,
+                                                                               2,
+                                                                               array('width'=>'24','class'=>'imprimir_bandas'));
+       $estilo = "oscuro";
+}
+
+
+$pagina->addBodyContent($tabla_encabezado);
+
+//{{{ Muestro el mes con el que estoy trabajando
+setlocale (LC_ALL, 'es_AR');
+$MES_PEDIDO_EN_LETRAS = strftime("%B", mktime(0,0,0,$fecha->format('%m'),1,$fecha->format('%Y')));
+
+$TABLA_FECHA =& new HTML_Table(        array(
+                                                               'width'=>'300',
+                                                               'align'=>'center',
+                                                               'border'=>'0',
+                                                               'cellspacing'=>'0',
+                                                               'cellpadding'=>'0'));
+                                                               
+$TABLA_MES =& new MECON_HTML_Tabla(array('width'=>'100'),$estilo);
+$TABLA_MES->addRow(array('Mes',$MES_PEDIDO_EN_LETRAS),array('width'=>'50%'));
+$TABLA_MES->updateColAttributes(0,array('titulo'=>1));
+
+$TABLA_ANIO =& new MECON_HTML_Tabla(array('width'=>'100'),$estilo);
+$TABLA_ANIO->addRow(array('Año',$fecha->format('%Y')),array('width'=>'50%'));
+$TABLA_ANIO->updateColAttributes(0,array('titulo'=>1));
+
+$TABLA_FECHA->addRow(array($TABLA_MES,'&nbsp;',$TABLA_ANIO),array('width'=>'100'));
+
+$pagina->addStyleSheet($TABLA_MES->getCSS());
+$pagina->addBodyContent('<BR>');
+$pagina->addBodyContent($TABLA_FECHA);
+$pagina->addBodyContent('<BR>');
+//}}}
+
+
+$tabla =& new MECON_HTML_Tabla(array('width'=>'400'),$estilo);
+$IMG =& new MECON_HTML_Image('/MECON/images/general_flecha_doble.gif');
 $titulo =& new HTML_Table(array('width'=>'400','border'=>'0','class'=>'titulo'));
 
 $pagina->addStyleSheet($tabla->getCSS());
@@ -30,16 +110,17 @@ $pagina->addStyleSheet($tabla->getCSS());
 $row = array($IMG->toHtml().' '.$agente->getNombre());
 $titulo->addRow($row,array('align'=>'left'));
 
-/* Armo la tabla */
-$row = array('Fecha','Hora','Tipo de acceso','Puerta');
-$tabla->addRow($row,array('titulo'=>1));
-
 $fondo = '#FFFFFF';
 $dia = 0;
 $i = 0;
 $tipo_acceso_anterior = 0;
 if(count($agente->getAccesos()) > 0)
 {
+
+       /* Armo la tabla */
+       $row = array('Fecha','Hora','Tipo de acceso','Puerta');
+       $tabla->addRow($row,array('cabecera'=>1));
+
        foreach ($agente->getAccesos() as $a)
        {
                $i++;
@@ -54,11 +135,14 @@ if(count($agente->getAccesos()) > 0)
                $dia = $a['fecha'];
                $tipo_acceso_anterior = $a['tipo_acceso'];
        }
+
+       /* Genero la página */
+       $pagina->addBodyContent($tabla);
+}else
+{
+       $pagina->addBodyContent(new MECON_HTML_Error("El agente no tiene registrado ningún acceso en este mes"));
 }
 
-/* Genero la página */
-$pagina->setTitle('Intranet');
-$pagina->addBodyContent($tabla);
 
 $pagina->display();
 ?>