]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/permisos/permisos-abm.php
Cambios. No se utiliza mas $_SESSION[samurai][login] en cambio se utiliza $_SESSION...
[mecon/samurai.git] / sistema / www / permisos / permisos-abm.php
index 67023ed92c3c822944dbc1120427c8e74787ec01..d6b69ef2277a0a1182f3e9b0353ab86653799a46 100644 (file)
 // $Id$
 // 
     
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
+//}}}
+//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 {{{
-    $SAMURAI = new Samurai($DB);
-    $FORM    = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
+    $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
 // }}}
 //AGREGO LOS ELEMENTOS DEL FORM {{{
     $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['usuario']);
     $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 {{{
@@ -50,7 +60,7 @@
         //Viene en el post, no me ocupo yo.
         $id_permiso = $idPermiso->getValue();
     }
-    $PERMISO = new Permiso ($DB, $id_permiso);
+    $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
 // }}}
 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
     if (isset($_GET['accion']) && $_GET['accion'] != '') {
         //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'     );
         $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 ('<font color="red"><b>'.$res->getMessage().'</b></font>');
-            $TABLA->addRow($row,'align=left');
+            $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
+            if ($aceptar->getValue() == 'Eliminar') {
+                $FORM->freeze();
+            }
         }
         else {
             $FORM->freeze();
         }
     }
 // }}}
-        
 //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
 ?>