X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/22ff747a92d77613360a06eb5b246b30b3be7997..f3ae07982132c35339f6d4e4947546aeea5b9550:/sistema/www/servicios/legajos/legajo.php
diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php
index 4a08dbe..a0fcc30 100755
--- a/sistema/www/servicios/legajos/legajo.php
+++ b/sistema/www/servicios/legajos/legajo.php
@@ -1,27 +1,27 @@
>');
-$m = new HTML_DietMarco('servicios', 'Servicios');
-$m->addTitle('Legajo de Personal');
+$m = new HTML_DietMarco('servicios', 'Legajos');
+//$m->addTitle('Legajo de Personal');
$row_T = array();
$T = new HTML_Table(array ( 'width'=>'750',
@@ -30,20 +30,20 @@ $T = new HTML_Table(array ( 'width'=>'750',
'cellpadding' => '0',
'bgcolor' => '#FFFFFF'));
-$agente = new MECON_Agente(NULL);
+$agente = new MECON_Agente($DB, NULL);
if(!($agente->buscarAgente($nrodoc)) or ($agente->buscarAgente($nrodoc) and preg_match('/^CON/',$agente->getTipo())))
{
- $t = new HTML_Table(array('width'=>'600','height'=>'200'));
- $t->addRow( array('Información no disponible'),
- array('valign'=>'center', 'align'=>'center', 'class'=>'txt_naranja'));
- $row_T = array($t);
- $T->addRow($row_T,array('valign'=>'top','align'=>'left'));
+ $mensaje = new HTML_Mensaje('alerta', 'Información no disponible', 300);
+ $m->addStyleSheet($mensaje->getCSS());
+
+ $T->addRow( array($mensaje),
+ array('valign'=>'middle','align'=>'center'));
$m->addBodyContent($T);
$m->display();
- die ();
+ exit;
}
$estudios = new Servicios_Legajos_Estudios($nrodoc);
@@ -61,7 +61,7 @@ if(!preg_match('/^CON/',$agente->getTipo()))
$datos_experiencia = $antiguedad->getExperiencia();
$datos_familiares = $familiares->getFamiliares();
$datos_hijos = $familiares->getHijos();
- $dep = new MECON_Dependencia($agente->getDependencia());
+ $dep = new MECON_Dependencia($DB, $agente->getDependencia());
}
$arbol_valores = array();
@@ -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());
@@ -336,6 +363,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('../estatico/normas/legajo','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'));