]> git.llucax.com Git - mecon/samurai.git/commitdiff
- BugFix. No grababa los permisos asociados a un perfil si se seleccionaba este del...
authorMartín Marrese <marrese@gmail.com>
Wed, 16 Jul 2003 15:20:46 +0000 (15:20 +0000)
committerMartín Marrese <marrese@gmail.com>
Wed, 16 Jul 2003 15:20:46 +0000 (15:20 +0000)
lib/SAMURAI/Perfil.php
sistema/www/perfiles/perfiles-abm.php

index 776774e0017702eb52796be8ab90d75641dc67af..a74a16fd8b8da7bdf6b5556f56b0f3d97c8edc6e 100644 (file)
@@ -312,18 +312,21 @@ class SAMURAI_Perfil {
      */
     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(),
index cf7fb6637bd6cb6a9a5da16f194756614024bc8e..42dcacbd576eade8b130614555db4676ebcccc03 100644 (file)
@@ -23,6 +23,7 @@
 // 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();