X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/cbbca72c4b0f0186f5af962a9c796509d2263782..9f4ece77af1889cdfed30fa93349fa8ecc5b0caf:/sistema/www/servicios/legajos/legajo.php diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php index 93d21f7..4a08dbe 100755 --- a/sistema/www/servicios/legajos/legajo.php +++ b/sistema/www/servicios/legajos/legajo.php @@ -6,44 +6,37 @@ require_once '../../../local_lib/Servicios/Legajos/ExperienciaLaboral.php'; 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/Arbol.php'; require_once '../../../local_lib/HTML_DietMarco.php'; -$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) +if(!isset($_SESSION['documento'])) { - $aa = array( - 'titulo'=>$a, - 'link'=>'./legajo.php?mostrar='.strtolower($a) - ); - array_push($arbol_valores,$aa); + header('Location: ../../servicios.php'); } +$nrodoc = $_SESSION['documento']; -$arbol = new HTML_Arbol($arbol_valores,'Datos'); -$m->addStyleSheet($arbol->getCSS()); -$m->addStyleSheet('/MECON/css/general_estilos.css'); + +$IMG_flecha_naranja =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif','>>'); +$m = new HTML_DietMarco('servicios', 'Servicios'); +$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 MECON_Agente(NULL); -if(!($agente->buscarAgente($nrodoc))) +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 = 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')); $m->addBodyContent($T); @@ -71,13 +64,43 @@ if(!preg_match('/^CON/',$agente->getTipo())) $dep = new MECON_Dependencia($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 MECON_HTML_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("Apellido y Nombre: ".$agente->getNombre()); $t->addRow($row,array('colspan'=>"2", 'align'=>"left")); @@ -100,8 +123,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif($_GET['mostrar'] == 'domicilio') { /* Datos del Domicilio del Agente */ - $t = new MECON_HTML_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("Calle: ".$datos['domicilio']); $t->addRow($row,array('colspan'=>"3", 'align'=>"left")); @@ -128,8 +151,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif($_GET['mostrar'] == 'cobertura' and !($datos['obra_social']=='')) { /* Datos de la Cobertura Medica */ - $t = new MECON_HTML_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")); @@ -137,8 +160,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif(($_GET['mostrar'] == 'estudios') and (is_array($datos_estudios))) { /* Datos de los Estudios del Agente */ - $t = new MECON_HTML_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("Título: ".$datos_estudios[$key]['titulo']); @@ -152,9 +175,9 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT /* Datos de los Antecedentes Laborales en la Adm. Publica Nacional */ $i = 2; - $t = new MECON_HTML_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) { @@ -195,8 +218,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT $t->addRow($row,array('align'=>"left")); /* Datos de la Antiguedad Laboral en años */ - $t = new MECON_HTML_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( "Antigüedad en el Sector Público Años: ".$datos_antiguedad['Anio_Nac'], @@ -220,8 +243,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif($_GET['mostrar'] == 'laboral') { /* Datos del Laborales actuales */ - $t = new MECON_HTML_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("Categoría: ".$agente->getTipo()); $t->addRow($row,array('align'=>"left", 'colspan'=>"2")); @@ -242,11 +265,11 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT ); $t->addRow($row,array('align'=>"left")); - }elseif($_GET['mostrar'] == 'conyuge') { + }elseif($_GET['mostrar'] == 'cónyuge') { /* Datos del Conyuge */ - $t = new MECON_HTML_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("Nombre ".$datos['conyuge']); $t->addRow($row,array('colspan'=>"2", 'align'=>"left")); @@ -263,8 +286,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif(($_GET['mostrar'] == 'hijos') and (count($datos_hijos) > 0)) { /* Datos de los hijos */ - $t = new MECON_HTML_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("Nombre ".$datos_hijos[$key]['nombre']); @@ -284,8 +307,8 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT }elseif(($_GET['mostrar'] == 'familiares') and (count($datos_familiares) > 0)) { /* Datos de los Familiares */ - $t = new MECON_HTML_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("Nombre ".$datos_familiares[$key]['nombre']); @@ -308,6 +331,9 @@ if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getT if(!isset($t)) { $t = new HTML_Table(array('width'=>'600')); $t->addRow(''); +}else +{ + $m->addStyleSheet($t->getCSS()); } $row_T = array($arbol,$t);