<?
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 'HTML/Table.php';
-//$nrodoc = $_SESSION['documento'];
+if(!isset($_SESSION['documento']))
+{
+ header('Location: ../../servicios.php');
+}
+
+$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));
+if(!$agente->buscarAgente($nrodoc))
+{
+ echo "El agente no está en las bases de RRHH";
+ die;
+}
/* Instancio DietMarco que sirve para mostrar la pagina dentro del marco de Intranet*/
-$m = new HTML_DietMarco('servicios');
+$m = new HTML_DietMarco('servicios','Bandas Horarias');
$m->addTitle('Bandas Horarias');
-$m->addStyleSheet('/MECON/css/general_estilos.css');
$m->addStyleSheet('../../css/servicios_bandas.css');
/* Instancio un objeto Table para el cuerpo de la pagina*/
$tabla_cuerpo = new HTML_Table(array('width'=>'760','border'=>'0','cellspacing'=>'0','cellpadding'=>'0'));
/* Encabezado propio de la pagina */
-$row_cuerpo = array();
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'24','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'135','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'20','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'160','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'20','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'190','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'20','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'166','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
- '',
- array('width'=>'24','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$tabla_cuerpo->addRow($row_cuerpo, array('height'=>'1'));
-
$imagen = new MECON_HTML_Image('../../images/servicios_bandas_imprimir1.gif',
'',
array('width'=>'24','height'=>'24','alt'=>'imprimir'));
-$row_cuerpo = array('Bandas Horarias',
- '',
- '',
- '',
- '',
- '',
- '',
+$row_cuerpo = array('Datos Personales',
'Página de Impresión ',
$imagen->toHtml());
$tabla_cuerpo->addRow($row_cuerpo,array('height'=>'24'));
-$tabla_cuerpo->updateCellAttributes($tabla_cuerpo->getRowCount() - 1,
- 0,
- array('colspan'=>'7','class'=>'titulo_tres'));
-$tabla_cuerpo->updateCellAttributes($tabla_cuerpo->getRowCount() - 1,
- 7,
- array('class'=>'imprimir'));
-$row_cuerpo = array();
$imagen = new MECON_HTML_Image('/MECON/images/blanco.gif',
'',
- array('width'=>'760','height'=>'1','alt'=>'blanco'));
-array_push($row_cuerpo,$imagen);
-$tabla_cuerpo->addRow($row_cuerpo,array('colspan'=>'9',
- 'bgcolor'=>'#FF9900',
- 'height'=>'1'));
-$tabla_cuerpo->addRow($row_cuerpo,array('colspan'=>'9',
- 'height'=>'10',
- 'width'=>'1'));
+ array('width'=>'586','height'=>'1','alt'=>'blanco','align'=>'top'));
+$imagen2 = new MECON_HTML_Image('/MECON/images/blanco.gif',
+ '',
+ array('width'=>'150','height'=>'1','alt'=>'blanco','align'=>'top'));
+$imagen3 = new MECON_HTML_Image('/MECON/images/blanco.gif',
+ '',
+ array('width'=>'24','height'=>'1','alt'=>'blanco','align'=>'top'));
+
+$row_cuerpo = array($imagen->toHtml(),$imagen2->toHtml(),$imagen3->toHtml());
+
+$tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FF9900',
+ 'height'=>'1'));
+$tabla_cuerpo->addRow($row_cuerpo,array('bgcolor'=>'#FFFFFF',
+ 'height'=>'10'));
+
+$tabla_cuerpo->updateCellAttributes(0,
+ 0,
+ array('width'=>'586','class'=>'titulo_tres'));
+$tabla_cuerpo->updateCellAttributes(0,
+ 1,
+ array('width'=>'150','class'=>'imprimir_bandas'));
+$tabla_cuerpo->updateCellAttributes(0,
+ 2,
+ array('width'=>'24','class'=>'imprimir_bandas'));
+$tabla_cuerpo->updateCellAttributes(1,
+ 0,
+ array('height'=>'1'));
+$tabla_cuerpo->updateCellAttributes(1,
+ 1,
+ array('height'=>'1'));
+$tabla_cuerpo->updateCellAttributes(1,
+ 2,
+ array('height'=>'1'));
+
+$m->addBodyContent($tabla_cuerpo);
/* Fin del encabezado propio de la pagina*/
/*
Aca empieza las tablas con la informacion personal del agente y
con las referencias de cada color de las celdas
*/
-setlocale (LC_ALL, 'es_AR');
-$nrodoc = $_SESSION['login'];
-$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));
-
-if(!$agente->buscarAgente($nrodoc))
-{
- echo "El agente no está en las bases de RRHH";
- die;
-}
/* Armo la tabla de la información personal */
$tabla_info_personal_adentro = new HTML_Table(array('width'=>'360',
/* Esta fila contiene las referencias */
$row_cuerpo = array($t);
-$tabla_cuerpo->addRow($row_cuerpo,array('colspan'=>'9', 'class'=>'imprimir'));
-$m->addBodyContent($tabla_cuerpo);
+$m->addBodyContent($t);
$m->addBodyContent('<BR>');
'bgcolor'=>'#FFFFFF'));
if($horas[31]['tiempo']=='0:00')
{
- ($horas[31]['ASN']==1)?$tabla_info_adentro->updateCellAttributes(11,0,array('bgcolor'=>'red')):0;
+ if($horas[31]['ASN']==1)
+ {
+ $tabla_info_adentro->updateCellAttributes(11,0,array('bgcolor'=>'red'));
+ }
if($horas[31]['ASN']==0 && $horas[31]['tipo']=='laborable')
{
preg_replace('/(..)$/','31',$fecha);
$tabla_info_adentro->updateCellAttributes(11,0,array('bgcolor'=>$color));
}
}
- ($horas[31]['ASN']==0 && $horas[31]['tipo']=='no laborable')?$tabla_info_adentro->updateCellAttributes(11,0,array('bgcolor'=>'#666666')):0;
+ if($horas[31]['ASN']==0 && $horas[31]['tipo']=='no laborable')
+ {
+ $tabla_info_adentro->updateCellAttributes(11,0,array('bgcolor'=>'lightblue'));
+ }
$tabla_info_adentro->updateCellAttributes(10,1,array('colspan'=>'3'));
$tabla_info_adentro->updateCellAttributes(10,4,array('colspan'=>'3'));
$imagen_notas = new MECON_HTML_Image('../../images/servicios_bandas_notas.gif',
'',
- array('width'=>'24','height'=>'24'));
+ array('width'=>'24','height'=>'24','valign'=>'top'));
$imagen_anterior = new MECON_HTML_Image('../../images/servicios_bandas_anterior.gif',
'',
- array('width'=>'16','height'=>'10'));
+ array('width'=>'16','height'=>'10','valign'=>'top'));
$imagen_visto = new MECON_HTML_Image('../../images/servicios_bandas_visto.gif',
'',
- array('width'=>'16','height'=>'10'));
+ array('width'=>'16','height'=>'10','valign'=>'top'));
+$link_volver = new MECON_HTML_LINK('./','volver');
-$row = array($imagen_notas,'Nota: Fecha de último cruce con las novedades',$imagen_anterior->toHtml().' volver',$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().' accesos',$imagen_visto->toHtml().' salidas autorizadas');
-$tabla_notas->addRow($row,array('class'=>'imprimir',
+$tabla_notas->addRow($row,array('class'=>'imprimir_bandas',
'bgcolor'=>'#FFFFFF'));
$tabla_notas->updateCellAttributes(0,0,array('width'=>'24','height'=>'24','class'=>'aclarar'));
$tabla_notas->updateCellAttributes(0,1,array('width'=>'370','height'=>'30','class'=>'aclarar'));
-$tabla_notas->updateCellAttributes(0,2,array('width'=>'130','class'=>'imprimir'));
-$tabla_notas->updateCellAttributes(0,3,array('width'=>'130','class'=>'imprimir'));
-$tabla_notas->updateCellAttributes(0,4,array('width'=>'130','class'=>'imprimir'));
+$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 "<BR>";
+echo $tabla_info->toHtml();
+echo $tabla_notas->toHtml();
+*/
$m->display();
?>