X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/d0ae155a8be2168110755cce58865068b34bfe91..ea699aa7fc38d1a95e3bf62bea24d342ddcd2fcc:/sistema/www/permisos/permisos-abm.php diff --git a/sistema/www/permisos/permisos-abm.php b/sistema/www/permisos/permisos-abm.php index eb7e95f..3a29150 100644 --- a/sistema/www/permisos/permisos-abm.php +++ b/sistema/www/permisos/permisos-abm.php @@ -20,10 +20,21 @@ // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ + if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) { +// header('Location: error') + } +//}}} +//REQUIRE_ONCE {{{ + //MECON {{{ require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Tabla.php'; + require_once 'MECON/HTML/Error.php'; + // }}} + //SAMURAI {{{ require_once 'SAMURAI/Permiso.php'; - + //}}} +//}}} //CREO LOS OBJETO NECESARIOS {{{ $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm'); // }}} @@ -31,8 +42,9 @@ $FORM->addElement ('header', 'cabecera', 'ABM Permisos'); $FORM->addElement ('hidden', 'id_permiso'); $FORM->addElement ('text' , 'desc_permiso', 'Descripcion', array('size'=>'50')); - $FORM->addElement ('static', 'responsable' , 'Responsable', $_SESSION['samurai']['login']); + $FORM->addElement ('hidden', 'responsable' , $_SESSION['samurai']['login']); $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar'); + $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;')); $FORM->addGroup($group,'botones'); // }}} //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{ @@ -72,12 +84,19 @@ //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(); } } // }}} //VALIDO EL FORMULARIO {{{ if ($FORM->validate()) { + // VEO SI SE CANCELO {{{ + $botones = $FORM->getSubmitValue('botones'); + if (@$botones['cancelar']) { + header('Location: permisos'); + } + // }}} $desc_permiso =& $FORM->getElement ('desc_permiso'); $responsable =& $FORM->getElement ('responsable' ); $group =& $FORM->getElement ('botones' ); @@ -85,15 +104,13 @@ $aceptar =& $group[0]; $PERMISO->setDescripcion($desc_permiso->getValue()); - $PERMISO->setResponsable($responsable->_text); //TODO URGENTE Modificar esto. No tiene metodo static::getValue() + $PERMISO->setResponsable($responsable->getValue()); //Verifico si se produjo algun error $res = $PERMISO->guardarDatos($aceptar->getValue()); if (PEAR::isError($res)) { - $TABLA = new Tabla ('cellspacing=0'); - $row = array (''.$res->getMessage().''); - $TABLA->addRow($row,'align=left'); + $ERROR = new MECON_HTML_Error(traducir($res->getMessage())); if ($aceptar->getValue() == 'Eliminar') { $FORM->freeze(); } @@ -104,15 +121,13 @@ } } // }}} - //DIBUJO LA PAGINA {{{ - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addTitle('ABM Permisos'); - if (isset($TABLA)) { - $MARCO->addBody($TABLA->toHtml(1)); + if (isset($ERROR)) { + $MARCO->addBody($ERROR); } $MARCO->addBody($FORM); $MARCO->display(); -// +// }}} //FIN ?>