X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/c64a4b5ee229adce6e0d0adb68c73ddb4f8a2e72..2a767add127bcb217dcc2ce2ca242f703b5022a0:/sistema/www/sistemas/sistemas.php
diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php
index 5aac445..b033aa9 100644
--- a/sistema/www/sistemas/sistemas.php
+++ b/sistema/www/sistemas/sistemas.php
@@ -1,5 +1,5 @@
';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
$aHrefPerm = '';
+ //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.'Ingresar Nuevo Sistema');
- $TABLA2->addRow($row,'align=right');
+ $row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
+ $TABLA2->addRow($row);
+ $TABLA2->setColAlign(0,'left');
+ $TABLA2->setColAlign(1,'right');
$TABLA = new Tabla ('cellpadding=2');
$row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.','Perm.');
@@ -49,7 +49,7 @@
$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);
$fecha_inicio = $sistema->getFechaInicio();
$fecha_fin = $sistema->getFechaFin();
@@ -69,12 +69,14 @@
$TABLA->addRow($row);
}
-
+
+
+
+
//Agrego las cosas al cuerpo de la pagina
- $body.=$TABLA2->toHtml(1);
- $body.=$TABLA->toHtml().'
';
$MARCO = new Marco ('../../conf/confSecciones.php');
- $MARCO->addBody($body);
+ $MARCO->addBody($TABLA2->toHtml(1));
+ $MARCO->addBody($TABLA);
$MARCO->display();
?>