]> git.llucax.com Git - mecon/intranet.git/commitdiff
- Corregí la página de legajos para que se adapte a los estilos nuevos de tabla.
authorMatías Sklar <msklar@mecon.gov.ar>
Mon, 29 Sep 2003 21:42:07 +0000 (21:42 +0000)
committerMatías Sklar <msklar@mecon.gov.ar>
Mon, 29 Sep 2003 21:42:07 +0000 (21:42 +0000)
sistema/local_lib/HTML_Login.php
sistema/www/css/login.css
sistema/www/servicios/legajos/legajo.php

index 678da2036611135b978d7a1fd02a49c69ac220eb..ae427f385fe9d28fa44494f9d161e7aadc474396 100644 (file)
@@ -90,10 +90,8 @@ class HTML_Login extends HTML_Table {
                         '<INPUT name = Submit type=submit value=Enviar>'));
       $int->updateColAttributes(0, array('class'   => 'titulo_tabla',
                                          'bgColor' => '#003366'));
-      $int->updateColAttributes(1, array('class'   => 'titulo',
-                                         'valign'   => 'middle'));
-      $int->updateColAttributes(3, array('class'   => 'titulo',
-                                         'valign'   => 'middle'));
+      $int->updateColAttributes(1, array('class'   => 'titulo'));
+      $int->updateColAttributes(3, array('class'   => 'titulo'));
       if(isset($this->login_incorrecto) && $this->login_incorrecto == true)
       {
         $login_incorrecto = new MECON_HTML_Image('images/login_incorrecto.gif');
index 62396a6fa4167498a5fa69e88657aa1d56eff381..b7e2a1666c7790be1e5b982190db0ae05123deb1 100644 (file)
@@ -2,5 +2,5 @@
        BACKGROUND-POSITION-X: left; COLOR: #ffffff; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 11pt; FONT-STYLE: normal; FONT-WEIGHT: bold; LINE-HEIGHT: normal; TEXT-ALIGN: left; VERTICAL-ALIGN: middle\r
 }\r
 .titulo {\r
-       BACKGROUND-POSITION-X: left; COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 9pt; FONT-STYLE: normal; FONT-WEIGHT: bold; LINE-HEIGHT: normal; TEXT-ALIGN: left; VERTICAL-ALIGN: top\r
+       BACKGROUND-POSITION-X: left; COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 9pt; FONT-STYLE: normal; FONT-WEIGHT: bold; LINE-HEIGHT: normal; TEXT-ALIGN: left; VERTICAL-ALIGN: center\r
 }\r
index 6a0b516c6edf7117311263bf7b91417413c68534..4a08dbe42d8cf311da8c6ef5748ac75107615ccf 100755 (executable)
@@ -6,6 +6,7 @@ require_once '../../../local_lib/Servicios/Legajos/ExperienciaLaboral.php';
 require_once '../../../local_lib/Servicios/Legajos/Familiares.php';
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Tabla.php';
+require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Arbol.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
 
@@ -17,9 +18,10 @@ if(!isset($_SESSION['documento']))
 }
 $nrodoc = $_SESSION['documento'];
 
+
+$IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif','>>');
 $m = new HTML_DietMarco('servicios', 'Servicios');
 $m->addTitle('Legajo de Personal');
-$m->addStyleSheet('../../css/servicios_agenda.css');
 
 $row_T = array();
 $T = new HTML_Table(array (    'width'=>'750',
@@ -97,8 +99,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        if($_GET['mostrar'] == 'personales') {
                
                /*  Datos Personales del Agente */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Datos Personales');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Datos Personales');
                $t->addRow($row,array('cabecera'=>1,'colspan'=>2));
                $row = array("<b>Apellido y Nombre:</b> ".$agente->getNombre());
                $t->addRow($row,array('colspan'=>"2", 'align'=>"left"));
@@ -121,8 +123,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif($_GET['mostrar'] == 'domicilio') {
 
                /*  Datos del Domicilio del Agente */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Domicilio');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Domicilio');
                $t->addRow($row,array('cabecera'=>1,'colspan'=>3));
                $row = array("<b>Calle:</b> ".$datos['domicilio']);
                $t->addRow($row,array('colspan'=>"3", 'align'=>"left"));
@@ -149,8 +151,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif($_GET['mostrar'] == 'cobertura' and !($datos['obra_social']=='')) {
 
                /*  Datos de la Cobertura Medica */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Cobertura M&eacute;dica');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Cobertura M&eacute;dica');
                $t->addRow($row,array('cabecera'=>1));
                $row = array($datos['obra_social']);
                $t->addRow($row,array('align'=>"left"));
@@ -158,8 +160,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif(($_GET['mostrar'] == 'estudios') and (is_array($datos_estudios))) {
 
                /*  Datos de los Estudios del Agente */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Estudios');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Estudios');
                $t->addRow($row,array('cabecera'=>1));
                foreach (array_keys($datos_estudios) as $key) {
                        $row = array("<b>T&iacute;tulo:</b> ".$datos_estudios[$key]['titulo']);
@@ -173,9 +175,9 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
 
                /*  Datos de los Antecedentes Laborales en la Adm. Publica Nacional */
                $i = 2;
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array(
-               'Antig&uuml;edad Laboral en la Administraci&oacute;n P&uacute;blica Nacional'
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().
+               ' Antig&uuml;edad Laboral en la Administraci&oacute;n P&uacute;blica Nacional'
                );
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"3"));
                foreach (array_keys($datos_experiencia) as $key) {
@@ -216,8 +218,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
                $t->addRow($row,array('align'=>"left"));
 
                /*  Datos de la Antiguedad Laboral en años */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Antig&uuml;edad Laboral - Totales');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Antig&uuml;edad Laboral - Totales');
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"3"));
                $row = array(
                        "<b>Antig&uuml;edad en el Sector P&uacute;blico Años:</b> ".$datos_antiguedad['Anio_Nac'],
@@ -241,8 +243,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif($_GET['mostrar'] == 'laboral') {
 
                /*  Datos del Laborales actuales */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Datos Laborales');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Datos Laborales');
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"2"));
                $row = array("<b>Categor&iacute;a:</b> ".$agente->getTipo());
                $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
@@ -266,8 +268,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif($_GET['mostrar'] == 'cónyuge') {
 
                /*  Datos del Conyuge */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Datos del C&oacute;nyuge');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Datos del C&oacute;nyuge');
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"2"));
                $row = array("<b>Nombre</b> ".$datos['conyuge']);
                $t->addRow($row,array('colspan'=>"2", 'align'=>"left"));
@@ -284,8 +286,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif(($_GET['mostrar'] == 'hijos') and (count($datos_hijos) > 0)) {
 
                /*  Datos de los hijos */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Datos de los Hijos');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Datos de los Hijos');
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"2"));
                foreach (array_keys($datos_hijos) as $key) {
                        $row = array("<b>Nombre</b> ".$datos_hijos[$key]['nombre']);
@@ -305,8 +307,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
        }elseif(($_GET['mostrar'] == 'familiares') and (count($datos_familiares) > 0)) {
 
                /*  Datos de los Familiares */
-               $t = new MECON_HTML_Tabla (array('width'=>'600'),'servicio');
-               $row = array('Datos de los Familiares');
+               $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+               $row = array($IMG_flecha_naranja->toHtml().' Datos de los Familiares');
                $t->addRow($row,array('cabecera'=>1, 'colspan'=>"2"));
                foreach (array_keys($datos_familiares) as $key) {
                        $row = array("<b>Nombre</b> ".$datos_familiares[$key]['nombre']);
@@ -329,6 +331,9 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
 if(!isset($t)) {
        $t = new HTML_Table(array('width'=>'600'));
        $t->addRow('');
+}else
+{
+       $m->addStyleSheet($t->getCSS());
 }
 
 $row_T = array($arbol,$t);