X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0b3baffebc472d0116c7259abb3d64abf64674ae..1ecc9798cbde319c7c4168c14f613670accb9982:/sistema/www/perfiles/perfiles-abm.php
diff --git a/sistema/www/perfiles/perfiles-abm.php b/sistema/www/perfiles/perfiles-abm.php
index 42dcacb..17534e2 100644
--- a/sistema/www/perfiles/perfiles-abm.php
+++ b/sistema/www/perfiles/perfiles-abm.php
@@ -27,6 +27,7 @@
require_once 'SAMURAI/Perfil.php';
require_once 'SAMURAI/Permiso.php';
require_once 'SAMURAI/Sistema.php';
+ require_once 'HTML/Image.php';
// }}}
//CREO LOS OBJETO NECESARIOS {{{
if (@$_GET['id_perfil']) {
@@ -69,22 +70,26 @@
}
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
- $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
- $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
- $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
- $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
- $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
- $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
- $FORM->addElement ('hidden', 'responsable', $responsable);
- $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
- $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
- $FORM->addGroup($group,'botones');
+ if (@$PERMISOS) {
+ $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
+ $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
+ $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
+ $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
+ $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
+ $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
+ $FORM->addElement ('hidden', 'responsable', $responsable);
+ $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
+ $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
+ $FORM->addGroup($group,'botones');
+ }
+ else {
+ $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
+ }
// }}}
//AGREGO LAS REGLAS DE VALIDACION {{{
$FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
// }}}
//CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
-// TODO Terminar de armar la parte de modificacion y eliminacion
if (isset($_GET['accion']) && $_GET['accion'] != '') {
//MODIFICACION
$id_perfil =& $FORM->getElement ('id_perfil' );
@@ -109,6 +114,7 @@
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');
+ $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
$FORM->freeze();
}
}
@@ -154,11 +160,11 @@
}
// }}}
//DIBUJO LA PAGINA {{{
+ $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+ $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().'');
$TABLA3 = new Tabla ('cellspacing=0');
- $row = array ('SISTEMA: '.$SISTEMA->getNombre().'');
- $TABLA3->addRow($row,'titulo align=left');
+ $TABLA3->addRow($row,'align=left');
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addTitle('ABM Perfil');
$MARCO->addBody($TABLA3);
if (isset($ERROR)) {