]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-abm.php
Retoques varios. Nada grave
[mecon/samurai.git] / sistema / www / sistemas / sistemas-abm.php
index 72a0259a9ed123df52a79cc4c57fbaf3159511ec..95fafced47a166f72e20c0d0521f440f6dd1e826 100644 (file)
@@ -1,5 +1,5 @@
 <?php
 <?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
 // +----------------------------------------------------------------------+
 // | PHP Version 4                                                        |
 // +----------------------------------------------------------------------+
 // +----------------------------------------------------------------------+
 // | PHP Version 4                                                        |
 // +----------------------------------------------------------------------+
 // +----------------------------------------------------------------------+
 //
 // $Id$
 // +----------------------------------------------------------------------+
 //
 // $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
 //
 //
-    require_once 'HTML/QuickForm.php';
-    require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php';
 
 
-//CREO LOS OBJETO NECESARIOS
-    $SAMURAI = new Samurai($DB);
-    $FORM = new HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
-//
-//OBTENGO LA LISTA DE PERMISOS
-    $PERMISOS = $SAMURAI->getSelectPermisos();
-//
-//REGISTRO EL ELEMENTO mdate
-//Van a ir en el quickform nuestro
-    $FORM->registerElementType  ('mdate', 'MECON/HTML/QuickForm/mdate.php', 'HTML_QuickForm_mdate');
-    $FORM->registerRule         ('fecha', 'function', 'validate', 'HTML_QuickForm_mdate');
-    $FORM->setRequiredNote      ('<FONT color="red">*</FONT> indica un campo obligatorio');
-//
-//AGREGO LOS ELEMENTOS DEL FORM
+//REQUIRE ONCE {{{
+    //MECON {{{
+    require_once 'MECON/HTML/QuickForm.php';
+    require_once 'MECON/HTML/Error.php';
+    require_once 'MECON/HTML/Tabla.php';
+    // }}}
+    //SAMURAI {{{
+    require_once 'SAMURAI/Sistema.php';
+    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');
+// }}}
+//OBTENGO LA LISTA DE PERMISOS {{{
+    $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
+// }}}
+//AGREGO LOS ELEMENTOS DEL FORM {{{
     $FORM->addElement ('header'  , 'cabecera'            , 'ABM Sistemas');
     $FORM->addElement ('hidden'  , 'id_sistema');
     $FORM->addElement ('text'    , 'nombre_sistema'      , 'Nombre'              , array('size' => '30'));
     $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 ('mdate'   , 'fecha_inicio'        , 'Fecha Inicio'        , array('language'=>'es','format'=>'dFY'));
-    $FORM->addElement ('mdate'   , 'fecha_fin'           , 'Fecha Fin'           , array('language'=>'es','format'=>'dFY'));
-    $FORM->addElement ('mdate'   , 'fecha_implementacion', 'Fecha Implementacion', array('language'=>'es','format'=>'dFY'));
+    $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 ('textarea', 'contacto'            , 'Contacto'            , array('rows' => '2','cols'=>'50'));
     $FORM->addElement ('select'  , 'permisos'            , 'Permisos'            , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
-    $FORM->addElement ('static'  , 'responsable'         , 'Responsable'         , $_SESSION['samurai']['login']); 
-                                                             //Toma por default al que esta logueado, pero si este dato 
-                                                             //es diferente no hay problema, ya lo considere
+    $FORM->addElement ('hidden'  , 'responsable'         , $_SESSION['samurai']['login']); 
     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
     $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');
     $FORM->addGroup($group,'botones');
-//
-//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS
-    $FORM->addRule('nombre_sistema', 'El campo nombre es obligatorio'      , 'required', '', 'client');
-    $FORM->addRule('desc_sistema'  , 'El campo descripcion es obligatorio' , 'required', '', 'client');
-    $FORM->addRule('fecha_inicio'  , 'El campo fecha inicio es obligatorio', 'numeric' , '', 'client');
-    $FORM->addRule('contacto'      , 'El campo contacto es obligatorio'    , 'required', '', 'client');
-//
-//LAS FECHAS SOLO LAS VALIDO SI ES UN NUEVO SISTEMA O SI ES UNA MODIFICACION
-    $FORM->addRule('fecha_inicio'        , 'No es una fecha Valida', 'fecha', '', 'client');
-    $FORM->addRule('fecha_fin'           , 'No es una fecha Valida', 'fecha', '', 'client');
-    $FORM->addRule('fecha_implementacion', 'No es una fecha Valida', 'fecha', '', 'client');
-//
-//CREO EL OBJETO SISTEMA
+// }}}
+//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
+    $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('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');
+    }
+// }}}
+//CREO EL OBJETO SISTEMA {{{
     //Obtengo el id del sistema.
     $idSistema =& $FORM->getElement('id_sistema');
     
     //Obtengo el id del sistema.
     $idSistema =& $FORM->getElement('id_sistema');
     
@@ -80,9 +83,9 @@
         $id_sistema = $idSistema->getValue();
     }
 
         $id_sistema = $idSistema->getValue();
     }
 
-    $SISTEMA = new Sistema ($DB, $id_sistema);
-//
-//SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM
+    $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
+// }}}
+//SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
     if (isset($_GET['accion']) && $_GET['accion'] != '') {
     //MODIFICACION -> agrego la info a los elementos
         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
     if (isset($_GET['accion']) && $_GET['accion'] != '') {
     //MODIFICACION -> agrego la info a los elementos
         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
                                                     'Y' => $tmp->format("%Y"),
                                            ));
         }
                                                     '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"),
                                         ));
         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"),
                                                     ));
         } 
         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->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();
         }
     } 
             $FORM->freeze();
         }
     } 
-//
-//VALIDO EL FORMULARIO
+// }}}
+//VALIDO EL FORMULARIO {{{
     if ($FORM->validate()) {        
         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
     if ($FORM->validate()) {        
         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
         }
         $SISTEMA->setContacto($contacto->getValue());        
         $SISTEMA->setPermisos($permisos->getSelected());
         }
         $SISTEMA->setContacto($contacto->getValue());        
         $SISTEMA->setPermisos($permisos->getSelected());
-        $SISTEMA->setResponsable($responsable->_text); //TODO URGENTE Modificar esto. No tiene hay metodo static::getValue()
-        $FORM->freeze();
-        $SISTEMA->guardarDatos($aceptar->getValue());
-        header('Location: sistemas');
+        $SISTEMA->setResponsable($responsable->getValue());
+        $botones = $FORM->getSubmitValue('botones');
+        if (@$botones['cancelar']) {
+            header ('Location: sistemas');
+        } 
+        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(traducir($res->getMessage()));
+            }
+            else {
+                $FORM->freeze();
+                header('Location: sistemas');
+            }
+        }
     }
     }
-//
+// }}}
 
 
-//DIBUJO LA PAGINA
-    $renderer =& new HTML_QuickForm_Renderer_Tabla('width="100%"');
-    $FORM->accept($renderer);
-
-    $MARCO = new Marco ('../../conf/confSecciones.php');
+//DIBUJO LA PAGINA {{{
     $MARCO->addTitle('ABM Sistema');
     $MARCO->addTitle('ABM Sistema');
-    $MARCO->addBody($renderer->toHtml());
+    if (isset($ERROR)) {
+        $MARCO->addBody($ERROR);
+    }
+    $MARCO->addBody($FORM);
     $MARCO->display();
     $MARCO->display();
-//
+// }}}
 //FIN
 ?>
 //FIN
 ?>