]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas.php
Bug Fix Varios
[mecon/samurai.git] / sistema / www / sistemas / sistemas.php
index 5aac445a519e0d08d486050686bdefdb55191ea9..de88a774c2187f6b974d197091589e3b5f46eedc 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
 // +----------------------------------------------------------------------+
 // | PHP Version 4                                                        |
 // +----------------------------------------------------------------------+
 // +----------------------------------------------------------------------+
 //
 // $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
 // 
     require_once 'MECON/HTML/Tabla.php';
+    require_once 'SAMURAI/Sistema.php';
 
+    $aHrefPopup = '<a href="" onClick="window.open(\'sistemas-datos?id_sistema=##SISTEMA##\',\'sistemasdatos\',\'height=400,width=400,scrollbars=yes\');return false;">';
     $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Sistema"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Sistema" ></a>';
     $aHrefPerm = '<a href="sistemas-permisos?idSistema=##SISTEMA##"><img src="/MECON/images/general_ir4" border="0" alt="Definir Permisos"></a>';
+    //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
+    if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
+        header('Location: ./../sel-sistema');    
+    }
+    // }}}  
 
-    $body = '';
-
-    $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
-
-    $sistemas = $SAMURAI->getSistemas();
+    $sistemas = SAMURAI_Sistema::getSistemas($DB);
 
     $TABLA2 = new Tabla ('cellspacing=0');
-    $row = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
-    $TABLA2->addRow($row,'align=right');
+    $row = array ('<a href="../sel-sistema.php"><img src="/MECON/images/general_ir4" border="0">Seleccionar otro sistema para trabajar</a>', $aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
+    $TABLA2->addRow($row);
+    $TABLA2->setColAlign(0,'left');
+    $TABLA2->setColAlign(1,'right');
     
     $TABLA = new Tabla ('cellpadding=2');
-    $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.','Perm.');
+    $row = array ('Id','Nombre','Modif.','Elim.','Perm.');
     $TABLA->addRow($row,'cabecera');
 
     foreach ($sistemas as $sistema) {
+        $Popup = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPopup);
         $Modif = ereg_replace('##NUEVO##'  , $sistema->getId(), $aHrefModif);
         $Elim  = ereg_replace('##NUEVO##'  , $sistema->getId(), $aHrefElim);
         $Modif = ereg_replace('##ACCION##' , 'm'              , $Modif);
         $Elim  = ereg_replace('##ACCION##' , 'e'              , $Elim);
-        $Perm  = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);;
+        $Perm  = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);
+        $Popup = $Popup.$sistema->getNombre().'</a>';
         
-        $fecha_inicio           = $sistema->getFechaInicio(); 
-        $fecha_fin              = $sistema->getFechaFin();
-        $fecha_implementacion   = $sistema->getFechaImplementacion();
-       
         $row = array (  $sistema->getId(),
-                        $sistema->getNombre(),
-                        $sistema->getDescripcion(),
-                        $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--',
-                        $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--',
-                        $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--',
-                        $sistema->getContacto(),
+                        $Popup,
                         $Modif,
                         $Elim,
                         $Perm,
                 );
-
         $TABLA->addRow($row);
     }
-    
+
     //Agrego las cosas al cuerpo de la pagina
-    $body.=$TABLA2->toHtml(1);
-    $body.=$TABLA->toHtml().'<BR>';
 
     $MARCO = new Marco ('../../conf/confSecciones.php');
-    $MARCO->addBody($body);
+    $MARCO->addBody($TABLA2->toHtml(1));
+    $MARCO->addBody($TABLA);
     $MARCO->display();
 ?>