X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/c64a4b5ee229adce6e0d0adb68c73ddb4f8a2e72..5664c266997bb4bf5b7c6825bac2b29f5b41d7d4:/sistema/www/sistemas/sistemas.php?ds=sidebyside diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php index 5aac445..8c96533 100644 --- a/sistema/www/sistemas/sistemas.php +++ b/sistema/www/sistemas/sistemas.php @@ -1,5 +1,5 @@ setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); +//}}} require_once 'MECON/HTML/Tabla.php'; + require_once 'SAMURAI/Sistema.php'; + $aHrefPopup = ''; $aHref = ''; $aHrefModif = $aHref.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; - $aHrefPerm = 'Definir Permisos'; - - $body = ''; - - $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); + $aHrefPerm = 'Definir Permisos'; + //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ + if (!@$_SESSION['samurai']['id_sistema']) { + header('Location: ./../sel-sistema?redirect=sistemas/sistemas'); + } + // }}} - $sistemas = $SAMURAI->getSistemas(); + $sistemas = SAMURAI_Sistema::getSistemas($DB); - $TABLA2 = new Tabla ('cellspacing=0'); - $row = array ($aHref.'Ingresar Nuevo Sistema'); - $TABLA2->addRow($row,'align=right'); + $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0'); + $row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema'); + $TABLA2->addRow($row); + $TABLA2->updateColAttributes(0,'align="left"'); + $TABLA2->updateColAttributes(1,'align="right"'); - $TABLA = new Tabla ('cellpadding=2'); - $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.','Perm.'); + $TABLA = new MECON_HTML_Tabla ('cellpadding=2'); + $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().''; - $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); } - + $TABLA->updateColAttributes(0, 'width="5%"'); + $TABLA->updateColAttributes(2, 'width="8%"'); + $TABLA->updateColAttributes(3, 'width="8%"'); + $TABLA->updateColAttributes(4, 'width="8%"'); + //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(); ?>