X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/eb0437b0fb8356a0e75427fac24ab0bdbd021e51..6d87f3958e1b86a0fc03188da9748e1d0a9ca4ab:/sistema/www/servicios/legajos/legajo.php?ds=inline diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php index b796350..a0fcc30 100755 --- a/sistema/www/servicios/legajos/legajo.php +++ b/sistema/www/servicios/legajos/legajo.php @@ -10,12 +10,11 @@ require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; require_once 'MECON/HTML/Arbol.php'; require_once 'HTML_DietMarco.php'; +require_once 'HTML_Mensaje.php'; - - -if(!isset($_SESSION['documento'])) -{ - header('Location: ../../servicios.php'); +if(!isset($_SESSION['documento'])) { + header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI'])); + exit; } $nrodoc = $_SESSION['documento']; @@ -31,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); @@ -62,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();