From f09ff8793f2d6fae6e28d174a4c4a96a5017c963 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Sklar?= Date: Tue, 7 Oct 2003 20:15:20 +0000 Subject: [PATCH] =?utf8?q?-=20Formateamos=20la=20salida=20del=20tipo=20de?= =?utf8?q?=20agente.=20-=20Filtramos=20el=20rengl=C3=B3n=20de=20la=20funci?= =?utf8?q?=C3=B3n=20ejecutiva=20en=20los=20casos=20en=20que=20el=20agente?= =?utf8?q?=20no=20posea.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sistema/www/servicios/legajos/legajo.php | 33 +++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php index 4a08dbe..449a826 100755 --- a/sistema/www/servicios/legajos/legajo.php +++ b/sistema/www/servicios/legajos/legajo.php @@ -246,15 +246,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("Categoría: ".$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("Categoría: ".$tipo_agente); $t->addRow($row,array('align'=>"left", 'colspan'=>"2")); $row = array( "Nivel: ".$datos['nivel'], "Grado: ".$datos['grado'] ); $t->addRow($row,array('align'=>"left")); - $row = array("Función Ejecutiva: ".$datos['func_ejec']); - $t->addRow($row,array('align'=>"left", 'colspan'=>"2")); + if($datos['func_ejec'] != 0) + { + $row = array("Función Ejecutiva: ".$datos['func_ejec']); + $t->addRow($row,array('align'=>"left", 'colspan'=>"2")); + } $row = array("Dependencia: ".$dep->getNombre()); $t->addRow($row,array('align'=>"left", 'colspan'=>"2")); $row = array("Código de Dependencia: ".$agente->getDependencia()); -- 2.43.0