]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas.php
ABM de sistemas listo. Falta agregar las observaciones a la asociacion de permisos...
[mecon/samurai.git] / sistema / www / sistemas.php
index 6c0e8c65eea4a297737c256cfe91ad369e5ad56f..c6e5f7d097544cfabc7bc9dce1c2c0a387039ad3 100644 (file)
 // $Date$
 // $Rev$
 // 
 // $Date$
 // $Rev$
 // 
-    require_once 'HTML/Tabla.php';
+    require_once 'MECON/HTML/Tabla.php';
 
     $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
 
     $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
-    $aHrefModif = $aHref.'<img src="/www/images/modificar.gif" border="0"></a>';
-    $aHrefElim  = $aHref.'<img src="/www/images/eliminar.gif"  border="0"></a>';
+    $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0"></a>';
+    $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0"></a>';
+    $aHrefPerm  = '<a href="sistemas-permisos?idSistema=##SISTEMA##"><img src="/MECON/images/general_ir4" border="0"></a>';
 
     $body = '';
 
 
     $body = '';
 
     $sistemas = $SAMURAI->getSistemas();
 
     $TABLA2 = new Tabla ('cellspacing=0');
     $sistemas = $SAMURAI->getSistemas();
 
     $TABLA2 = new Tabla ('cellspacing=0');
-    $row = array ($aHref.'<img src="/www/images/nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
+    $row = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
     $TABLA2->addRow($row,'align=right');
     
     $TABLA = new Tabla ('cellpadding=2');
     $TABLA2->addRow($row,'align=right');
     
     $TABLA = new Tabla ('cellpadding=2');
-    $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.');
+    $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.','Perm.');
     $TABLA->addRow($row,'cabecera');
 
     foreach ($sistemas as $sistema) {
     $TABLA->addRow($row,'cabecera');
 
     foreach ($sistemas as $sistema) {
-        $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);
+        $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);;
         
         $fecha_inicio           = $sistema->getFechaInicio(); 
         $fecha_fin              = $sistema->getFechaFin();
         
         $fecha_inicio           = $sistema->getFechaInicio(); 
         $fecha_fin              = $sistema->getFechaFin();
                         $sistema->getContacto(),
                         $Modif,
                         $Elim,
                         $sistema->getContacto(),
                         $Modif,
                         $Elim,
+                        $Perm,
                 );
 
         $TABLA->addRow($row);
     }
     
                 );
 
         $TABLA->addRow($row);
     }
     
-
     //Agrego las cosas al cuerpo de la pagina
     $body.=$TABLA2->toHtml(1);
     $body.=$TABLA->toHtml().'<BR>';
     //Agrego las cosas al cuerpo de la pagina
     $body.=$TABLA2->toHtml(1);
     $body.=$TABLA->toHtml().'<BR>';
-    
-    $MARCO = new Marco ('samurai');
+
+    $MARCO = new Marco ('../conf/confSecciones.php');
     $MARCO->addBody($body);
     $MARCO->display();
 ?>
     $MARCO->addBody($body);
     $MARCO->display();
 ?>