]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-abm.php
Agrego a la seccion perfiles la funcionalidad de tabladb.
[mecon/samurai.git] / sistema / www / perfiles / perfiles-abm.php
index 3354c6fce1438cf45a3d1d4c7a0fd32e000ee8a4..5d15fdfbbc776e3ac94bc323a700e3e0496af7fa 100644 (file)
 // $Id$
 // 
 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
-$SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL, SAMURAI_DEVELOPER);
+$SAMURAI_PERM->setSistema(SAMURAI_PERM);
+if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
+    $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']);
+    $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER);
+}
+$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
+//}}}
+
+//XXX OBTENGO LA ACCION {{{
+switch (@$_REQUEST['accion']) {
+    case 'm':
+        $b_accion = 'Modificar';
+        $accion = 'm';
+        break;
+    case 'e':
+        $b_accion = 'Eliminar';
+        $accion = 'e';
+        break;
+    default:
+        $b_accion = 'Grabar';
+        $accion = '';
+        break;
+}
 //}}}
 
 // REQUIRE_ONCE {{{
@@ -33,8 +55,8 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
     require_once 'MECON/HTML/Image.php';
 // }}}
 //CREO LOS OBJETO NECESARIOS {{{
-    if (@$_GET['id_perfil']) {
-        $id_perfil = $_GET['id_perfil'];
+    if (@$_GET['_id_perfil']) {
+        $id_perfil = $_GET['_id_perfil'];
     }
     elseif (@$_POST['id_perfil']) {
         $id_perfil = $_POST['id_perfil'];
@@ -43,17 +65,19 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
         $id_perfil = null;
     }
     $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
+    $FORM->renderer->updateAttributes('width="400"');
     $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
-    $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil);
+    $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil,
+            $_SESSION['samurai']['id_sistema']);
 
     if ($PERFIL->getResponsable()) {
         $responsable = $PERFIL->getResponsable();
     }
     else {
-        $responsable = $_SESSION['samurai']['login'];
+        $responsable = $_SESSION['usuario'];
     }
     
-    if (!@$_GET['id_perfil']) {
+    if (!@$_GET['_id_perfil']) {
         if (@$_GET['desc_perfil']) {
             $PERFIL->setDescripcion(@$_GET['desc_perfil']);
         }
@@ -77,13 +101,11 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
         $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 ('static', 'desc_perfil', 'Descripción', $descripcion);
         $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
-        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
-            $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');
+        $FORM->addElement ('hidden', 'accion', $accion);
+        $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $b_accion);
         $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
         $FORM->addGroup($group,'botones');
     }
@@ -100,10 +122,6 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
         $id_perfil    =& $FORM->getElement  ('id_perfil'  );
         $desc_perfil  =& $FORM->getElement  ('desc_perfil');
         $permisos     =& $FORM->getElement  ('permisos'   );
-        
-        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
-            $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
-        }
         $responsable  =& $FORM->getElement  ('responsable');
         $group        =& $FORM->getElement  ('botones'    );
         $group        =& $group->getElements('aceptar'    );
@@ -111,10 +129,6 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
 
         $permisos->setSelected($PERFIL->getPermisos());
         
-        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
-            $tipo_perfil->setSelected($PERFIL->getTipo());
-        }
-
         if ($PERFIL->getResponsable() != '') {
             $responsable->setValue($PERFIL->getResponsable());
         }
@@ -142,11 +156,6 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
             $id_perfil    =& $FORM->getElement  ('id_perfil'  );
             $desc_perfil  =& $FORM->getElement  ('desc_perfil');
             $permisos     =& $FORM->getElement  ('permisos'   );
-            
-            if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
-                $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
-                $tipo_perfil_tmp  =  $tipo_perfil->getSelected();
-            }
             $responsable  =& $FORM->getElement  ('responsable');
             $group        =& $FORM->getElement  ('botones'    );
             $group        =& $group->getElements('aceptar'    );
@@ -156,10 +165,6 @@ $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PER
             $PERFIL->setResponsable($responsable->getValue());
             $PERFIL->setPermisos   ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
             
-            if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
-                $PERFIL->setTipo       ($tipo_perfil_tmp['0']   );
-            }
-            
             //Grabo y verifico si se produjo algun error
             $res = $PERFIL->guardarDatos($aceptar->getValue());