X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/9c1bc8b1e573fdc02d368d21899f10e4f42a0eac..b8f8c3239f369a693994d882c317d87e06f070b6:/sistema/www/perfiles/perfiles-abm.php diff --git a/sistema/www/perfiles/perfiles-abm.php b/sistema/www/perfiles/perfiles-abm.php index 528aa9a..97ec8e1 100644 --- a/sistema/www/perfiles/perfiles-abm.php +++ b/sistema/www/perfiles/perfiles-abm.php @@ -20,9 +20,12 @@ // $Id$ // //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ - if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL)) { -// header('Location: error') - } +$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); //}}} // REQUIRE_ONCE {{{ @@ -46,13 +49,14 @@ } $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm'); $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']) { @@ -79,11 +83,8 @@ $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'); $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;')); @@ -102,10 +103,6 @@ $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' ); @@ -113,10 +110,6 @@ $permisos->setSelected($PERFIL->getPermisos()); - if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) { - $tipo_perfil->setSelected($PERFIL->getTipo()); - } - if ($PERFIL->getResponsable() != '') { $responsable->setValue($PERFIL->getResponsable()); } @@ -144,11 +137,6 @@ $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' ); @@ -158,10 +146,6 @@ $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());