]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/banda_agente.php
-Agregué los popups para ver los accesos y las novedades temporales.
[mecon/intranet.git] / sistema / www / servicios / bandas / banda_agente.php
index 0d9e9304ca97f70246be3a26dd1c3647609aa374..8bf0307bae5ce6c00cf2d702b5684d9be2d86c7e 100644 (file)
@@ -2,24 +2,32 @@
 require_once '../../../local_lib/HTML_DietMarco.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Link.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Link.php';
-require_once 'MECON/HTML/Tabla.php';
 require_once 'MECON/Dependencia.php';
 require_once 'MECON/NovedadesDia.php';
 require_once 'MECON/Dependencia.php';
 require_once 'MECON/NovedadesDia.php';
-require_once '../../../local_lib/Servicios/Bandas/Agente.php';
+require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'HTML/Table.php';
 require_once 'HTML/Table.php';
+require_once 'DB.php';
 
 
-if(!isset($_SESSION['documento']))
+if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
 {
        header('Location: ../../servicios.php');
 }
 
 {
        header('Location: ../../servicios.php');
 }
 
+//CREO LA CONEXION A LA BASE DE DATOS
+$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
+if (DB::isError($dbh)) {
+    die ($DB->getMessage());
+}
+
+//Seteo las variables generales
 $nrodoc = $_SESSION['documento'];
 setlocale (LC_ALL, 'es_AR');
 $fecha = $_POST['fecha'];
 
 $fecha_spliteada = split('-',$fecha);
 $mes = strftime("%B", mktime(0,0,0,$fecha_spliteada[1],1,$fecha_spliteada[0]));
 $nrodoc = $_SESSION['documento'];
 setlocale (LC_ALL, 'es_AR');
 $fecha = $_POST['fecha'];
 
 $fecha_spliteada = split('-',$fecha);
 $mes = strftime("%B", mktime(0,0,0,$fecha_spliteada[1],1,$fecha_spliteada[0]));
-$agente =& new Servicios_Bandas_Agente($nrodoc,new date($fecha));
+
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
 if(!$agente->buscarAgente($nrodoc))
 {
        echo "El agente no está en las bases de RRHH";
 if(!$agente->buscarAgente($nrodoc))
 {
        echo "El agente no está en las bases de RRHH";
@@ -35,7 +43,7 @@ $m->addStyleSheet('../../css/servicios_bandas.css');
 $tabla_cuerpo = new HTML_Table(array('width'=>'760','border'=>'0','cellspacing'=>'0','cellpadding'=>'0'));
 
 /* Encabezado propio de la pagina */
 $tabla_cuerpo = new HTML_Table(array('width'=>'760','border'=>'0','cellspacing'=>'0','cellpadding'=>'0'));
 
 /* Encabezado propio de la pagina */
-$imagen = new MECON_HTML_Image('../../images/servicios_bandas_imprimir1.gif',
+$imagen = new MECON_HTML_Image('../../images/servicios_imprimir1.gif',
                                                 '',
                                                array('width'=>'24','height'=>'24','alt'=>'imprimir'));
 $row_cuerpo = array('Datos Personales',
                                                 '',
                                                array('width'=>'24','height'=>'24','alt'=>'imprimir'));
 $row_cuerpo = array('Datos Personales',
@@ -262,8 +270,16 @@ for($i=1;$i<4;$i++)
                        array_push($row,$horas[$j+$aux]['tiempo']);
                        if($horas[$j+$aux]['tiempo']=='0:00')
                        {
                        array_push($row,$horas[$j+$aux]['tiempo']);
                        if($horas[$j+$aux]['tiempo']=='0:00')
                        {
-                               ($horas[$j+$aux]['ASN']==1)?array_push($celda_ASN,$j-1):0;
-                               ($horas[$j+$aux]['ASN']==0 && $horas[$j+$aux]['tipo']=='laborable')?array_push($celda_NOV,array($j-1,$horas[$j+$aux]['fecha'])):0;
+                               if($horas[$j+$aux]['ASN']==1 || $horas[$j+$aux]['inconsistencia']==1)
+                               {
+                                       array_push($celda_ASN,$j-1);
+                                       
+                               }
+                               if($horas[$j+$aux]['ASN']==0 && $horas[$j+$aux]['tipo']=='laborable')
+                               {
+                                       array_push($celda_NOV,array($j-1,$horas[$j+$aux]['fecha']));
+                                       $row[$j-1]="<a href=\"\" onClick=\"window.open('./nov_dia.php?nrodoc=".$nrodoc."&fecha=".$horas[$j+$aux]['fecha']."','novedad','width=250,height=100');return(false);\">".$row[$j-1]."</a>";
+                               }
                        }
                        ($horas[$j+$aux]['ASN']==0 && $horas[$j+$aux]['tipo']=='no laborable')?array_push($celda_FER,$j-1):0;
                }else
                        }
                        ($horas[$j+$aux]['ASN']==0 && $horas[$j+$aux]['tipo']=='no laborable')?array_push($celda_FER,$j-1):0;
                }else
@@ -271,7 +287,6 @@ for($i=1;$i<4;$i++)
                        array_push($row,'&nbsp');
                }
        }
                        array_push($row,'&nbsp');
                }
        }
-       
        $tabla_info_adentro->addRow($row,array('bgcolor'=>'#FFFFFF', 'class'=>'txt_fila'));
        $tabla_info_adentro->addRow(array('&nbsp;'),array('colspan'=>'10',
                                                                                                                'bgcolor'=>'#FFFFFF',
        $tabla_info_adentro->addRow($row,array('bgcolor'=>'#FFFFFF', 'class'=>'txt_fila'));
        $tabla_info_adentro->addRow(array('&nbsp;'),array('colspan'=>'10',
                                                                                                                'bgcolor'=>'#FFFFFF',
@@ -317,14 +332,21 @@ if(isset($horas[31]['tiempo']))
        
        $tabla_info_adentro->addRow($row,array('class'=>'titulo_columna',
                                                                                        'background'=>'../../images/servicios_bandas_borde_tabla.gif'));
        
        $tabla_info_adentro->addRow($row,array('class'=>'titulo_columna',
                                                                                        'background'=>'../../images/servicios_bandas_borde_tabla.gif'));
-       
-       
        $row = array($horas[31]['tiempo'],
                                $agente->getDiasTrabajados(),'','',
                                $agente->getDiasLaborablesTrabajados(),'','',
                                $agente->getPromedioMensual(),'','');
        $row = array($horas[31]['tiempo'],
                                $agente->getDiasTrabajados(),'','',
                                $agente->getDiasLaborablesTrabajados(),'','',
                                $agente->getPromedioMensual(),'','');
+
+       if($horas[31]['tiempo']=='0:00' && $horas[31]['ASN']==0 && $horas[31]['tipo']=='laborable')
+       {
+               $row[0]="<a href=\"\" onClick=\"window.open('./nov_dia.php?nrodoc=".
+                                       $nrodoc."&fecha=".$horas[31]['fecha'].
+                                       "','novedad','width=\"250\" height=\"100\"');return(false);\">
+                                       ".$horas[31]['tiempo']."</a>";
+       }
        $tabla_info_adentro->addRow($row,array('class'=>'txt_fila',
                                                                                        'bgcolor'=>'#FFFFFF'));
        $tabla_info_adentro->addRow($row,array('class'=>'txt_fila',
                                                                                        'bgcolor'=>'#FFFFFF'));
+
        if($horas[31]['tiempo']=='0:00')
        {
                if($horas[31]['ASN']==1)
        if($horas[31]['tiempo']=='0:00')
        {
                if($horas[31]['ASN']==1)
@@ -407,7 +429,7 @@ $tabla_notas = new HTML_Table(array('width'=>'760',
                                                                        'cellpadding'=>'0',
                                                                        'bgcolor'=>'#003366'));
 
                                                                        'cellpadding'=>'0',
                                                                        'bgcolor'=>'#003366'));
 
-$imagen_notas = new MECON_HTML_Image('../../images/servicios_bandas_notas.gif',
+$imagen_notas = new MECON_HTML_Image('../../images/servicios_notas.gif',
                                                         '',
                                                        array('width'=>'24','height'=>'24','valign'=>'top'));
 
                                                         '',
                                                        array('width'=>'24','height'=>'24','valign'=>'top'));
 
@@ -415,12 +437,12 @@ $imagen_anterior = new MECON_HTML_Image('../../images/servicios_bandas_anterior.
                                                                '',
                                                                array('width'=>'16','height'=>'10','valign'=>'top'));
                                                                
                                                                '',
                                                                array('width'=>'16','height'=>'10','valign'=>'top'));
                                                                
-$imagen_visto = new MECON_HTML_Image('../../images/servicios_bandas_visto.gif',
+$imagen_visto = new MECON_HTML_Image('../../images/servicios_visto.gif',
                                                                '',
                                                                array('width'=>'16','height'=>'10','valign'=>'top'));
                                                                '',
                                                                array('width'=>'16','height'=>'10','valign'=>'top'));
-$link_volver = new MECON_HTML_LINK('form_mes.php','volver');
+$link_volver = new MECON_HTML_LINK('./','volver');
 
 
-$row = array($imagen_notas,'Nota: Fecha de último cruce con las novedades',$imagen_anterior->toHtml().' '.$link_volver->toHtml(),$imagen_visto->toHtml().' accesos',$imagen_visto->toHtml().' salidas autorizadas');
+$row = array($imagen_notas,'Nota: Fecha de último cruce con las novedades',$imagen_anterior->toHtml().' '.$link_volver->toHtml(),$imagen_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>",$imagen_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>");
                        
 $tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
                                                                                'bgcolor'=>'#FFFFFF'));
                        
 $tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
                                                                                'bgcolor'=>'#FFFFFF'));
@@ -430,13 +452,8 @@ $tabla_notas->updateCellAttributes(0,1,array('width'=>'370','height'=>'30','clas
 $tabla_notas->updateCellAttributes(0,2,array('width'=>'130','class'=>'imprimir_bandas'));
 $tabla_notas->updateCellAttributes(0,3,array('width'=>'130','class'=>'imprimir_bandas'));
 $tabla_notas->updateCellAttributes(0,4,array('width'=>'130','class'=>'imprimir_bandas'));
 $tabla_notas->updateCellAttributes(0,2,array('width'=>'130','class'=>'imprimir_bandas'));
 $tabla_notas->updateCellAttributes(0,3,array('width'=>'130','class'=>'imprimir_bandas'));
 $tabla_notas->updateCellAttributes(0,4,array('width'=>'130','class'=>'imprimir_bandas'));
+
 $m->addBodyContent($tabla_notas);
 $m->addBodyContent($tabla_notas);
-/*
-echo $tabla_cuerpo->toHtml();
-echo "<BR>";
-echo $tabla_info->toHtml();
-echo $tabla_notas->toHtml();
-*/
 $m->display();
 ?>
 
 $m->display();
 ?>