]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/legajos/legajo.php
-Corrijo la forma de obtencion de la fecha de actualizacion de bandas
[mecon/intranet.git] / sistema / www / servicios / legajos / legajo.php
index b7963506178370516b6addfe07da1af9bd721d28..a0fcc30361843c0296f98d8055713bf6fc1d70f6 100755 (executable)
@@ -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();