*/
function _grabarDb() // ~X2C
{
- //GRABO EN PERFIL
+ //Obtengo el id del perfil de ser necesario
if (!$this->getId()) {
//No existe el perfil. Lo cargo por primera vez.
$idPerfil = $this->_db->nextId('perfil');
$this->setId($idPerfil);
-
- //GRABO EN PERM_PERFIL_SIST
- $res = $this->_guardarPermisos();
- if (PEAR::isError($res)) {
- return $res;
- }
+ }
+
+ //GRABO EN PERM_PERFIL_SIST
+ $res = $this->_guardarPermisos();
+ if (PEAR::isError($res)) {
+ return $res;
+ }
+ //GRABO EN PERFIL
+ if (!$this->getId()) {
$datos = array (
'id_perfil' => $idPerfil,
'desc_perfil' => $this->getDescripcion(),
// REQUIRE_ONCE {{{
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
+ require_once 'MECON/HTML/Error.php';
require_once 'SAMURAI/Perfil.php';
require_once 'SAMURAI/Permiso.php';
require_once 'SAMURAI/Sistema.php';
$res = $PERFIL->guardarDatos($aceptar->getValue());
if (PEAR::isError($res)) {
- $TABLA = new Tabla ('cellspacing=0');
- $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
- $TABLA->addRow($row,'align=left');
+ $ERROR = new MECON_HTML_Error($res->getMessage());
if ($aceptar->getValue() == 'Eliminar') {
$FORM->freeze();
}
$MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addTitle('ABM Perfil');
$MARCO->addBody($TABLA3);
- if (isset($TABLA)) {
- $MARCO->addBody($TABLA);
+ if (isset($ERROR)) {
+ $MARCO->addBody($ERROR);
}
$MARCO->addBody($FORM);
$MARCO->display();