X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/2e53439b467ec66730bfabab16c03c14c7acb1ca..448fde9a2cb8497145173eeb673b44a4ec8424ed:/sistema/www/servicios/bandas/banda_agente.php?ds=sidebyside diff --git a/sistema/www/servicios/bandas/banda_agente.php b/sistema/www/servicios/bandas/banda_agente.php index 0d0f318..8c6c8e3 100644 --- a/sistema/www/servicios/bandas/banda_agente.php +++ b/sistema/www/servicios/bandas/banda_agente.php @@ -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 'MECON/HTML/Tabla.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 'DB.php'; if(!isset($_SESSION['documento'])) { 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])); -$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"; @@ -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 */ -$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', @@ -262,8 +270,16 @@ for($i=1;$i<4;$i++) 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]="".$row[$j-1].""; + } } ($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,' '); } } - $tabla_info_adentro->addRow($row,array('bgcolor'=>'#FFFFFF', 'class'=>'txt_fila')); $tabla_info_adentro->addRow(array(' '),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')); - - $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]=" + ".$horas[31]['tiempo'].""; + } $tabla_info_adentro->addRow($row,array('class'=>'txt_fila', 'bgcolor'=>'#FFFFFF')); + 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')); -$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')); @@ -415,7 +437,7 @@ $imagen_anterior = new MECON_HTML_Image('../../images/servicios_bandas_anterior. '', 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')); $link_volver = new MECON_HTML_LINK('./','volver'); @@ -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')); + $m->addBodyContent($tabla_notas); -/* -echo $tabla_cuerpo->toHtml(); -echo "
"; -echo $tabla_info->toHtml(); -echo $tabla_notas->toHtml(); -*/ $m->display(); ?>