X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/421bca9938fcbe0d0cf3e715a27f0a6bc37c15c3..6fcc7afad8df2d0a29337748c3ee41153fb73a77:/sistema/www/sistemas/sistemas-abm.php diff --git a/sistema/www/sistemas/sistemas-abm.php b/sistema/www/sistemas/sistemas-abm.php index 639287b..7311db3 100644 --- a/sistema/www/sistemas/sistemas-abm.php +++ b/sistema/www/sistemas/sistemas-abm.php @@ -31,6 +31,13 @@ require_once 'SAMURAI/Permiso.php'; // }}} // }}} +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); +//}}} //CREO LOS OBJETO NECESARIOS {{{ $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm'); // }}} @@ -41,13 +48,21 @@ $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', 'wrap'=>'virtual')); + $FORM->addElement ('textarea', 'desc_sistema' , + 'Descripción' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual')); + +//xdebug_start_trace(); + $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' ); + +//xdebug_dump_function_trace(); + + $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' ); - $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion'); + $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementación'); $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', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;')); $FORM->addGroup($group,'botones'); @@ -56,7 +71,7 @@ $botones = $FORM->getSubmitValue('botones'); if (!@$botones['cancelar']) { $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required'); - $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required'); + $FORM->addRule('desc_sistema' , 'El campo descripción 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'); @@ -109,43 +124,43 @@ } //Seteo las fechas if ($tmp = $SISTEMA->getFechaInicio()) { - $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_inicio->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_inicio->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_inicio->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } if ($tmp = $SISTEMA->getFechaFin()) { - $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_fin->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_fin->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_fin->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } if ($tmp = $SISTEMA->getFechaImplementacion()) { - $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_implementacion->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_implementacion->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_implementacion->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } $aceptar->setValue('Modificar');