X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/22d1ae1aa6bfee6df20dfa9544e14feaecc9fbf4..52ec6b73aae5937cd9c04e150e6b261b8be98b01:/sistema/www/sistemas/sistemas-abm.php diff --git a/sistema/www/sistemas/sistemas-abm.php b/sistema/www/sistemas/sistemas-abm.php index 6b46103..a893fc3 100644 --- a/sistema/www/sistemas/sistemas-abm.php +++ b/sistema/www/sistemas/sistemas-abm.php @@ -31,6 +31,9 @@ require_once 'SAMURAI/Permiso.php'; // }}} // }}} +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); +//}}} //CREO LOS OBJETO NECESARIOS {{{ $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm'); // }}} @@ -41,15 +44,15 @@ $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas'); $FORM->addElement ('hidden' , 'id_sistema'); $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30')); - $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50')); + $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual')); $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' ); $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' ); $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion'); $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50')); $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple')); - $FORM->addElement ('hidden' , 'responsable' , $_SESSION['samurai']['login']); + $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']); $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar'); - $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar'); + $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;')); $FORM->addGroup($group,'botones'); // }}} //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{ @@ -58,12 +61,12 @@ $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required'); $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required'); $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required'); - if (isset($_GET['accion']) && $_GET['accion'] != 'e') { - $FORM->addRule('fecha_inicio' , 'La fecha no es válida' , 'fecha' ); - $FORM->addRule('fecha_fin' , 'La fecha no es válida' , 'fecha' ); - $FORM->addRule('fecha_implementacion', 'La fecha no es válida' , 'fecha' ); - } - $FORM->addRule('contacto' , 'El campo contacto es obligatorio' , 'required'); +// if (isset($_GET['accion']) && $_GET['accion'] != 'e') { + $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha'); + $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha'); + $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha'); +// } + $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required'); } // }}} //CREO EL OBJETO SISTEMA {{{ @@ -114,24 +117,46 @@ 'Y' => $tmp->format("%Y"), )); } + else { + $fecha_inicio->setSelectedDate(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); + } + + if ($tmp = $SISTEMA->getFechaFin()) { $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); + } + else { + $fecha_fin->setSelectedDate(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } + if ($tmp = $SISTEMA->getFechaImplementacion()) { $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } + else { + $fecha_implementacion->setSelectedDate(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); + } $aceptar->setValue('Modificar'); //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(); } } @@ -185,8 +210,11 @@ } else { $res = $SISTEMA->guardarDatos($aceptar->getValue()); + if ($aceptar->getValue() != 'Eliminar') { + $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId(); + } if (PEAR::isError($res)) { - $ERROR = new MECON_HTML_Error($res->getMessage()); + $ERROR = new MECON_HTML_Error(traducir($res->getMessage())); } else { $FORM->freeze(); @@ -197,7 +225,6 @@ // }}} //DIBUJO LA PAGINA {{{ - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addTitle('ABM Sistema'); if (isset($ERROR)) { $MARCO->addBody($ERROR);