<?php
require_once 'MECON/Dependencia.php';
require_once 'MECON/Agente.php';
-require_once '../../../local_lib/Servicios/Legajos/Estudios.php';
-require_once '../../../local_lib/Servicios/Legajos/ExperienciaLaboral.php';
-require_once '../../../local_lib/Servicios/Legajos/Familiares.php';
+require_once 'MECON/Legajos/Estudios.php';
+require_once 'MECON/Legajos/ExperienciaLaboral.php';
+require_once 'MECON/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';
-
+require_once 'HTML_DietMarco.php';
+require_once 'HTML_Mensaje.php';
+if(!isset($_SESSION['documento'])) {
+ header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
+ exit;
+}
$nrodoc = $_SESSION['documento'];
-$m = new HTML_DietMarco('servicios');
-$m->addTitle('Legajo de Personal');
-
-
-$arbol_valores = array();
-foreach (array('Personales','Domicilio','Cobertura','Estudios','Antiguedad','Laboral','Cónyuge','Hijos','Familiares') as $a)
-{
- $aa = array(
- 'titulo'=>$a,
- 'link'=>'./legajo.php?mostrar='.strtolower($a)
- );
- array_push($arbol_valores,$aa);
-}
-$arbol = new HTML_Arbol($arbol_valores,'Datos');
+$IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif','>>');
+$m = new HTML_DietMarco('servicios', 'Legajos');
+//$m->addTitle('Legajo de Personal');
+$row_T = array();
$T = new HTML_Table(array ( 'width'=>'750',
'border' => '0',
'cellspacing' => '0',
'cellpadding' => '0',
'bgcolor' => '#FFFFFF'));
-$row_T = array();
-
-$agente = new Agente(NULL);
-if(!($agente->buscarAgente($nrodoc)))
+$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'));
- $t->addRow('');
-
- $row_T = array($arbol,$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);
-$antiguedad = new Servicios_Legajos_ExperienciaLaboral($nrodoc);
-$familiares = new Servicios_Legajos_Familiares($nrodoc);
+$estudios = new MECON_Legajos_Estudios($DB,$nrodoc);
+$antiguedad = new MECON_Legajos_ExperienciaLaboral($DB,$nrodoc);
+$familiares = new MECON_Legajos_Familiares($DB,$nrodoc);
if(!preg_match('/^CON/',$agente->getTipo()))
{
- $datos_hora_desde = new Hora($agente->datos['hora_desde']);
- $datos_hora_hasta = new Hora($agente->datos['hora_hasta']);
+ $datos_hora_desde = new MECON_Tiempo_Hora($agente->datos['hora_desde']);
+ $datos_hora_hasta = new MECON_Tiempo_Hora($agente->datos['hora_hasta']);
$datos = $agente->getOtrosDatos();
$datos['cuil'] = $agente->getCuil();
$datos_estudios = $estudios->getEstudios();
$datos_experiencia = $antiguedad->getExperiencia();
$datos_familiares = $familiares->getFamiliares();
$datos_hijos = $familiares->getHijos();
- $dep = new Dependencia($agente->getDependencia());
+ $dep = new MECON_Dependencia($DB, $agente->getDependencia());
+}
+
+$arbol_valores = array();
+foreach (array('Personales','Domicilio','Cobertura','Estudios','Antiguedad','Laboral','Cónyuge','Hijos','Familiares') as $a)
+{
+ $aa = array(
+ 'titulo'=>$a,
+ 'link'=>'./legajo.php?mostrar='.strtolower($a)
+ );
+ if (in_array(strtolower($a),$_GET))
+ {
+ $aa['activo']=1;
+ }
+ if (!(
+ ($a=='Domicilio' and $agente->datos['domicilio']=='') or
+ ($a=='Cobertura' and $agente->datos['obra_social']=='') or
+ ($a=='Estudios' and count($datos_estudios)==0) or
+ ($a=='Antiguedad' and count($datos_antiguedad)==0) or
+ ($a=='Laboral' and $agente->getDependencia()=='') or
+ ($a=='Cónyuge' and $datos['conyuge']=='') or
+ ($a=='Hijos' and count($datos_hijos)==0) or
+ ($a=='Familiares' and count($datos_familiares)==0)
+ ))
+ {
+ array_push($arbol_valores,$aa);
+ }
}
+$arbol = new MECON_HTML_Arbol($arbol_valores,'Datos');
+
+$m->addStyleSheet($arbol->getCSS());
+
if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getTipo()))) {
if($_GET['mostrar'] == 'personales') {
/* Datos Personales del Agente */
- $t = new Tabla (array('width'=>'600'));
- $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"));
}elseif($_GET['mostrar'] == 'domicilio') {
/* Datos del Domicilio del Agente */
- $t = new Tabla (array('width'=>'600'));
- $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"));
}elseif($_GET['mostrar'] == 'cobertura' and !($datos['obra_social']=='')) {
/* Datos de la Cobertura Medica */
- $t = new Tabla (array('width'=>'600'));
- $row = array('Cobertura Médica');
+ $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+ $row = array($IMG_flecha_naranja->toHtml().' Cobertura Médica');
$t->addRow($row,array('cabecera'=>1));
$row = array($datos['obra_social']);
$t->addRow($row,array('align'=>"left"));
}elseif(($_GET['mostrar'] == 'estudios') and (is_array($datos_estudios))) {
/* Datos de los Estudios del Agente */
- $t = new Tabla (array('width'=>'600'));
- $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ítulo:</b> ".$datos_estudios[$key]['titulo']);
/* Datos de los Antecedentes Laborales en la Adm. Publica Nacional */
$i = 2;
- $t = new Tabla (array('width'=>'600'));
- $row = array(
- 'Antigüedad Laboral en la Administración Pública Nacional'
+ $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+ $row = array($IMG_flecha_naranja->toHtml().
+ ' Antigüedad Laboral en la Administración Pública Nacional'
);
$t->addRow($row,array('cabecera'=>1, 'colspan'=>"3"));
foreach (array_keys($datos_experiencia) as $key) {
$t->addRow($row,array('align'=>"left"));
/* Datos de la Antiguedad Laboral en años */
- $t = new Tabla ("width='600'");
- $row = array('Antigüedad Laboral - Totales');
+ $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+ $row = array($IMG_flecha_naranja->toHtml().' Antigüedad Laboral - Totales');
$t->addRow($row,array('cabecera'=>1, 'colspan'=>"3"));
$row = array(
"<b>Antigüedad en el Sector Público Años:</b> ".$datos_antiguedad['Anio_Nac'],
}elseif($_GET['mostrar'] == 'laboral') {
/* Datos del Laborales actuales */
- $t = new Tabla (array('width'=>'600'));
- $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í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());
);
$t->addRow($row,array('align'=>"left"));
- }elseif($_GET['mostrar'] == 'conyuge') {
+ }elseif($_GET['mostrar'] == 'cónyuge') {
/* Datos del Conyuge */
- $t = new Tabla (array('width'=>'600'));
- $row = array('Datos del Cónyuge');
+ $t = new MECON_HTML_Tabla (array('width'=>'600'),'medio');
+ $row = array($IMG_flecha_naranja->toHtml().' Datos del Cónyuge');
$t->addRow($row,array('cabecera'=>1, 'colspan'=>"2"));
$row = array("<b>Nombre</b> ".$datos['conyuge']);
$t->addRow($row,array('colspan'=>"2", 'align'=>"left"));
}elseif(($_GET['mostrar'] == 'hijos') and (count($datos_hijos) > 0)) {
/* Datos de los hijos */
- $t = new Tabla (array('width'=>'600'));
- $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']);
}elseif(($_GET['mostrar'] == 'familiares') and (count($datos_familiares) > 0)) {
/* Datos de los Familiares */
- $t = new Tabla (array('width'=>'600'));
- $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']);
if(!isset($t)) {
$t = new HTML_Table(array('width'=>'600'));
$t->addRow('');
+}else
+{
+ $m->addStyleSheet($t->getCSS());
}
+$m->addStyleSheet('../../css/servicios_legajos.css');
+$img_consultas =& new MECON_HTML_Image('../estatico/imag/consultas.jpg','width=28 height=70');
+$link_consultas =& new MECON_HTML_Link('mailto:legajos@mecon.gov.ar?subject=Consulta%20de%20legajos',$img_consultas);
+$img_declaracion =& new MECON_HTML_Image('../../images/servicios_legajos_declaracion.gif','width=28 height=70');
+$link_declaracion =& new MECON_HTML_Link('../estatico/normas/legajo',$img_declaracion);
$row_T = array($arbol,$t);
$T->addRow($row_T,array('valign'=>'top','align'=>'left'));
+$T->addRow(array('',''));
+$T->addRow(array($link_consultas,$link_declaracion),array());
+$T->updateCellAttributes(2,1,array('align'=>'right'));
$m->addBodyContent($T);