]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles.php
FINALIZADO.
[mecon/samurai.git] / sistema / www / perfiles / perfiles.php
index 2d90f2d700e375fd6abef75a4504f175832d4a3c..ecebec76c87d2522b7b9c485be096e12e2edf824 100644 (file)
 //
 // $Id$
 // 
 //
 // $Id$
 // 
-    
+
+
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER);
+//}}}
+//REQUIRE ONCE {{{
     require_once 'MECON/HTML/Tabla.php';
     require_once 'SAMURAI/Perfil.php';
     require_once 'MECON/HTML/Tabla.php';
     require_once 'SAMURAI/Perfil.php';
-
-//LINKS A PERFILES-ABM {{{
-    $aHref      = '<a href="perfiles-abm?accion=##ACCION##&idPerfil=##NUEVO##">';
+    require_once 'SAMURAI/Sistema.php';
+//}}}
+//LINKS {{{
+    $aHrefPopup = '<a href="" onClick="window.open(\'perfiles-datos?id_perfil=##PERFIL##\',\'perfilesdatos\',\'height=300,width=400,scrollbars=yes\');return false;">';
+    $aHref      = '<a href="perfiles-abm?accion=##ACCION##&id_perfil=##NUEVO##">';
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Perfil" ></a>';
 // }}}
 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Perfil" ></a>';
 // }}}
 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
-if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
-    header('Location: sel-sistema');    
+if (!@$_SESSION['samurai']['id_sistema']) {
+    header('Location: ./../sel-sistema?redirect=perfiles/perfiles');    
 }
 // }}}   
 //CREO LOS OBJETOS NECESARIOS {{{
 }
 // }}}   
 //CREO LOS OBJETOS NECESARIOS {{{
-    $TABLA2 = new Tabla ('cellspacing=0');
-    $TABLA  = new Tabla ('cellpadding=2');
-    
+    $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
+    $TABLA  = new MECON_HTML_Tabla ('cellpadding=2');
+    $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
+    $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
 // }}}
 //OBTENGO LA INFORMACION DE LA BASE {{{
 // }}}
 //OBTENGO LA INFORMACION DE LA BASE {{{
-    $perfiles = SAMURAI_Perfil::getPerfiles($DB);
+    $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
 // }}}
 //AGREGO LOS DATOS A LAS TABLAS {{{
 // }}}
 //AGREGO LOS DATOS A LAS TABLAS {{{
-    $row   = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Perfil</a>');
-    $TABLA2->addRow($row,'align=right');    
-    $row   = array ('Id','Descripcion','Tipo','Modif.','Elim.');
+    $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+    $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
+    $TABLA3->addRow($row,'align=left'); 
+    
+    //Agrego el link a nuevo
+    if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_ALTA)) {
+        $row   = array ('<a href="perfiles-nuevo"><img src="/MECON/images/general_nuevo.gif" border="0">Ingresar&nbsp;Nuevo&nbsp;Perfil</a>');
+        $TABLA2->addRow($row,'align=right');    
+    }
+    //Genero la cabecera de la tabla
+    $row   = array ('Id','Descripcion');
+    if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
+        $row[] = 'Tipo';
+    }    
+    if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
+        $row[] = 'Modif.';
+    }    
+    if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
+        $row[] = 'Elim.';
+    }    
+    
     $TABLA->addRow($row,'cabecera');
     foreach ($perfiles as $perfil) {
     $TABLA->addRow($row,'cabecera');
     foreach ($perfiles as $perfil) {
+        $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup);
         $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
         $Elim  = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
         $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
         $Elim  = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
+        $Popup = $Popup.$perfil->getDescripcion().'</a>';
         $Modif = ereg_replace('##ACCION##', 'm'             , $Modif     );
         $Elim  = ereg_replace('##ACCION##', 'e'             , $Elim      );
         $Modif = ereg_replace('##ACCION##', 'm'             , $Modif     );
         $Elim  = ereg_replace('##ACCION##', 'e'             , $Elim      );
-        $row = array (  $perfil->getId(),
-                        $perfil->getDescripcion(),
-                        $perfil->getTipo(),
-                        $Modif,
-                        $Elim,
-                    );
+        $row = array ($perfil->getId(), $Popup);
+        
+        if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
+            $row[] = $perfil->getTipo();
+        }    
+        if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
+            $row[] = $Modif;
+        }    
+        if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
+            $row[] = $Elim;
+        }    
         $TABLA->addRow($row);
     }
 // }}}
 //DIBUJO LA PAGINA {{{
         $TABLA->addRow($row);
     }
 // }}}
 //DIBUJO LA PAGINA {{{
-    $MARCO = new Marco ('../../conf/confSecciones.php');
+    $MARCO->addBody($TABLA3);
     $MARCO->addBody($TABLA2->toHtml(1));
     $MARCO->addBody($TABLA);
     $MARCO->display();
     $MARCO->addBody($TABLA2->toHtml(1));
     $MARCO->addBody($TABLA);
     $MARCO->display();