$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í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í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ón Ejecutiva:</b> ".$datos['func_ejec']);
- $t->addRow($row,array('align'=>"left", 'colspan'=>"2"));
+ if($datos['func_ejec'] != 0)
+ {
+ $row = array("<b>Funció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ódigo de Dependencia:</b> ".$agente->getDependencia());