X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/f511595e675f4589b2d1f0cf5d74ff0594a402f5..7d6253665e1e39bbb176518d9f99c9fc174c9490:/sistema/www/consultas/sistemas.php diff --git a/sistema/www/consultas/sistemas.php b/sistema/www/consultas/sistemas.php index e3ecfdd..72e8755 100644 --- a/sistema/www/consultas/sistemas.php +++ b/sistema/www/consultas/sistemas.php @@ -271,6 +271,73 @@ elseif (@!$accion || $accion == 'info_informacion') { } //}}} +//ACTIVAR_SISTEMAS {{{ +elseif (@!$accion || $accion == 'activar_sistema') { + //Creo los objetos necesarios {{{ + $T_SISTEMAS =& new MECON_HTML_Tabla(); + $IMG =& new MECON_HTML_Image('/MECON/images/general_tilde_azul.gif'); + $LINK =& new MECON_HTML_Link('sistemas'); + //}}} + + //Obtengo la lista de sistemas (habilitados y no habilitados) {{{ + $sistemas = SAMURAI_Sistema::getSistemas($DB, false); + //}}} + + //Agrego la informacion a la tabla de sistemas {{{ + $T_SISTEMAS->addRow(array('Listado de Sistemas de Sistemas Inactivos'), 'cabecera + colspan="4"'); + $T_SISTEMAS->addRow(array('Id', 'Nombre', 'Descripcion', 'Activar'), + 'titulo'); + //Agrego la info de los sistemas + foreach ($sistemas as $sistema) { + if (!$sistema->getEstado()) { + $LINK->setContents($IMG); + $LINK->setGetVars( + array( + 'accion' => 'activar_sistema_activar', + 'id_sist' => $sistema->getId(), + ) + ); + $row = array ( $sistema->getId(), + $sistema->getNombre(), + $sistema->getDescripcion(), + $LINK->toHtml() + ); + $T_SISTEMAS->addRow($row); + } + } + $T_SISTEMAS->updateColAttributes(0, 'width="5%" align="center"'); + $T_SISTEMAS->updateColAttributes(1, 'width="20%" align="center"'); + $T_SISTEMAS->updateColAttributes(3, 'width="5%" align="center"'); + $T_SISTEMAS->updateRowAttributes(0, 'align="left"'); + //}}} + + //Agrego la informacion al marco {{{ + $LINK_VOLVER->setHref('consultas'); + $MARCO->addBodyContent($T_SISTEMAS); + $MARCO->addTitle('Activacion de Sistemas'); + $MARCO->addBodyContent('
'); + $T_VOLVER->addRow(array($LINK_VOLVER->toHtml()), 'align="left"'); + $MARCO->addBodyContent($T_VOLVER); + //}}} +} +//}}} + +//ACTIVAR_SISTEMAS_ACTIVAR {{{ +elseif (@!$accion || $accion == 'activar_sistema_activar') { + + //Creo los objetos necesarios {{{ + $SISTEMA =& new SAMURAI_Sistema($DB, $id_sist); + //}}} + //Guardo la informacion {{{ + $SISTEMA->setEstado(1); + $SISTEMA->guardarDatos('modificar'); + //}}} + + header ('Location: sistemas?accion=activar_sistema'); +} +//}}} + //MUESTRO LA INFORMACION {{{ $MARCO->display(); exit;