]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/legajos/legajo.php
- Se agrega el comportamiento especial para las paginas de la oanet:
[mecon/intranet.git] / sistema / www / servicios / legajos / legajo.php
index 090625cc7d1cbf59f7cc07bb3e075f6faadead5d..49ec4206d9fbf9e66c818a0d72f957e38b0325f7 100755 (executable)
@@ -1,9 +1,9 @@
 <?php
 require_once 'MECON/Dependencia.php';
 require_once 'MECON/Agente.php';
-require_once 'Servicios/Legajos/Estudios.php';
-require_once 'Servicios/Legajos/ExperienciaLaboral.php';
-require_once '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';
@@ -30,7 +30,7 @@ $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())))
 {
        $mensaje = new HTML_Mensaje('alerta', 'InformaciĆ³n no disponible', 300);
@@ -46,9 +46,9 @@ if(!($agente->buscarAgente($nrodoc)) or ($agente->buscarAgente($nrodoc) and preg
        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()))
 {
@@ -364,13 +364,15 @@ if(!isset($t)) {
 }
 
 $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('',''));
+$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);