]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/legajos/legajo.php
Se corrige un bug.
[mecon/intranet.git] / sistema / www / servicios / legajos / legajo.php
index 915a72b449a2a0e6a9820b7b9ef4b8155b6c129b..152051cd1b16ba4059cfaaa977ab8ab95684869c 100755 (executable)
@@ -26,7 +26,7 @@ foreach (array('Personales','Domicilio','Cobertura','Estudios','Antiguedad','Lab
        array_push($arbol_valores,$aa);
 }
 
-$arbol = new HTML_Arbol($arbol_valores,'Datos');
+$arbol = new MECON_HTML_Arbol($arbol_valores,'Datos');
 $m->addStyleSheet($arbol->getCSS());
 $m->addStyleSheet('/MECON/css/general_estilos.css');
 $T = new HTML_Table(array (    'width'=>'750',
@@ -37,7 +37,7 @@ $T = new HTML_Table(array (   'width'=>'750',
 
 $row_T = array();
 
-$agente = new Agente(NULL);
+$agente = new MECON_Agente(NULL);
 if(!($agente->buscarAgente($nrodoc)))
 {
        $t = new HTML_Table(array('width'=>'600'));
@@ -59,8 +59,8 @@ $familiares = new Servicios_Legajos_Familiares($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();
@@ -68,7 +68,7 @@ if(!preg_match('/^CON/',$agente->getTipo()))
        $datos_experiencia = $antiguedad->getExperiencia();
        $datos_familiares = $familiares->getFamiliares();
        $datos_hijos = $familiares->getHijos();
-       $dep = new Dependencia($agente->getDependencia());
+       $dep = new MECON_Dependencia($agente->getDependencia());
 }
 
 if(in_array('mostrar',array_keys($_GET)) and !(preg_match('/^CON/',$agente->getTipo()))) {