]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/legajos/legajo.php
Agregué los links para consultas a la página de legajos
[mecon/intranet.git] / sistema / www / servicios / legajos / legajo.php
index 4a08dbe42d8cf311da8c6ef5748ac75107615ccf..2c2ef0fd24bb212996493cd47632258419b3922e 100755 (executable)
@@ -7,6 +7,7 @@ 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/Link.php';
 require_once 'MECON/HTML/Arbol.php';
 require_once '../../../local_lib/HTML_DietMarco.php';
 
@@ -20,7 +21,7 @@ $nrodoc = $_SESSION['documento'];
 
 
 $IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif','>>');
-$m = new HTML_DietMarco('servicios', 'Servicios');
+$m = new HTML_DietMarco('servicios', 'Legajos');
 $m->addTitle('Legajo de Personal');
 
 $row_T = array();
@@ -246,15 +247,42 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT
                $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());
+               $tipo_agente = $agente->getTipo();
+               if($tipo_agente == 'PER')
+               {
+                       $tipo_agente='Planta permanente';
+               }elseif($tipo_agente == 'TRA')
+               {
+                       $tipo_agente='Planta transitoria';
+               }elseif($tipo_agente == 'GAB')
+               {
+                       $tipo_agente='Gabinete';
+               }elseif($tipo_agente == 'BEC')
+               {
+                       $tipo_agente='Pasante';
+               }elseif($tipo_agente == 'ADS')
+               {
+                       $tipo_agente='Adscripto';
+               }elseif($tipo_agente == 'CLM')
+               {
+                       $tipo_agente='Contrato ley marco';
+               }elseif($tipo_agente == 'PCS')
+               {
+                       $tipo_agente='Postulante a cargo simple';
+               }
+               
+               $row = array("<b>Categor&iacute;a:</b> ".$tipo_agente);
                $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
                $row = array(
                        "<b>Nivel:</b> ".$datos['nivel'],
                        "<b>Grado:</b> ".$datos['grado']
                );
                $t->addRow($row,array('align'=>"left"));
-               $row = array("<b>Funci&oacute;n Ejecutiva:</b> ".$datos['func_ejec']);
-               $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
+               if($datos['func_ejec'] != 0)
+               {
+                       $row = array("<b>Funci&oacute;n Ejecutiva:</b> ".$datos['func_ejec']);
+                       $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
+               }
                $row = array("<b>Dependencia:</b> ".$dep->getNombre());
                $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
                $row = array("<b>C&oacute;digo de Dependencia:</b> ".$agente->getDependencia());
@@ -336,6 +364,12 @@ if(!isset($t)) {
        $m->addStyleSheet($t->getCSS());
 }
 
+$m->addStyleSheet('../../css/servicios_legajos.css');
+$link_consultas =& new MECON_HTML_Link('mailto:legajos@mecon.gov.ar?subject=Consulta%20de%20legajos','Consultas');
+$link_declaracion =& new MECON_HTML_Link('#','Declaración jurada');
+$T->addRow(array($link_consultas,$link_declaracion),array('class'=>'titulo_vinculos_derecha'));
+$T->updateCellAttributes(0,0,array('class'=>'titulo_vinculos_izquierda'));
+$T->addRow(array('',''));
 $row_T = array($arbol,$t);
 $T->addRow($row_T,array('valign'=>'top','align'=>'left'));