]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-abm.php
BugFixes
[mecon/samurai.git] / sistema / www / sistemas / sistemas-abm.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: jue may 29 13:41:29 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 //
22
23 //REQUIRE ONCE {{{
24     //MECON {{{
25     require_once 'MECON/HTML/QuickForm.php';
26     require_once 'MECON/HTML/Error.php';
27     require_once 'MECON/HTML/Tabla.php';
28     // }}}
29     //SAMURAI {{{
30     require_once 'SAMURAI/Sistema.php';
31     require_once 'SAMURAI/Permiso.php';
32     // }}}
33 // }}}
34 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
35 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
36 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
37     $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
38 }
39 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
40 //}}}
41 //CREO LOS OBJETO NECESARIOS {{{
42     $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
43 // }}}
44 //OBTENGO LA LISTA DE PERMISOS {{{
45     $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
46 // }}}
47 //AGREGO LOS ELEMENTOS DEL FORM {{{
48     $FORM->addElement ('header'  , 'cabecera'            , 'ABM Sistemas');
49     $FORM->addElement ('hidden'  , 'id_sistema');
50     $FORM->addElement ('text'    , 'nombre_sistema'      , 'Nombre'              , array('size' => '30'));
51     $FORM->addElement ('textarea', 'desc_sistema'        ,
52             'Descripción'         , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
53
54 //xdebug_start_trace();
55
56     $FORM->addElement ('mdate'   , 'fecha_inicio'        , 'Fecha Inicio'        );
57
58 //xdebug_dump_function_trace();
59
60     
61     $FORM->addElement ('mdate'   , 'fecha_fin'           , 'Fecha Fin'           );
62     $FORM->addElement ('mdate'   , 'fecha_implementacion', 'Fecha Implementación');
63     $FORM->addElement ('textarea', 'contacto'            , 'Contacto'            , array('rows' => '2','cols'=>'50'));
64     $FORM->addElement ('select'  , 'permisos'            , 'Permisos'            , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
65     $FORM->addElement ('hidden'  , 'responsable'         , $_SESSION['usuario']); 
66     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
67     $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
68     $FORM->addGroup($group,'botones');
69 // }}}
70 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
71     $botones = $FORM->getSubmitValue('botones');
72     if (!@$botones['cancelar']) {
73         $FORM->addRule('nombre_sistema'      , 'El campo nombre es obligatorio'      , 'required');
74         $FORM->addRule('desc_sistema'        , 'El campo descripción es obligatorio' , 'required');
75         $FORM->addRule('fecha_inicio'        , 'El campo fecha inicio es obligatorio', 'required');
76 //        if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
77             $FORM->addRule('fecha_inicio'        , 'La fecha no es válida', 'fecha');
78             $FORM->addRule('fecha_fin'           , 'La fecha no es válida', 'fecha');
79             $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
80 //        }
81         $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
82     }
83 // }}}
84 //CREO EL OBJETO SISTEMA {{{
85     //Obtengo el id del sistema.
86     $idSistema =& $FORM->getElement('id_sistema');
87     
88     if (isset($_GET['accion']) && $_GET['accion'] != '') {
89     //Viene en el get es -> modificar o eliminar, me ocupo yo.
90         $id_sistema = $_GET['idSistema'];
91         $idSistema->setValue($id_sistema);
92     }
93     else {
94     //Viene en el post, no me ocupo yo.
95         $id_sistema = $idSistema->getValue();
96     }
97
98     $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
99 // }}}
100 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
101     if (isset($_GET['accion']) && $_GET['accion'] != '') {
102     //MODIFICACION -> agrego la info a los elementos
103         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
104         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
105         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
106         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
107         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
108         $contacto               =& $FORM->getElement  ('contacto'            );
109         $permisos               =& $FORM->getElement  ('permisos'            );
110         $responsable            =& $FORM->getElement  ('responsable'         );
111         $group                  =& $FORM->getElement  ('botones'             );
112         $group                  =& $group->getElements('aceptar'             );
113         $aceptar                =& $group[0];   
114
115         $nombre_sistema->setValue($SISTEMA->getNombre());
116         $desc_sistema->setValue  ($SISTEMA->getDescripcion());
117         $contacto->setValue      ($SISTEMA->getContacto());
118
119         if ($SISTEMA->getIdPermisos() != '') {
120             $permisos->setSelected($SISTEMA->getIdPermisos());
121         }
122         if ($SISTEMA->getResponsable() != '') {
123             $responsable->setValue($SISTEMA->getResponsable());
124         }
125         //Seteo las fechas
126         if ($tmp = $SISTEMA->getFechaInicio()) { 
127             $fecha_inicio->setValue(array(   'd' => $tmp->format("%d"),
128                                              'F' => $tmp->format("%m"),
129                                              'Y' => $tmp->format("%Y"),
130                                     ));
131         }
132         else {
133             $fecha_inicio->setValue(array(   'd' => '',
134                                              'F' => '',
135                                              'Y' => '',
136                                    ));
137         }
138
139         
140         if ($tmp = $SISTEMA->getFechaFin()) { 
141             $fecha_fin->setValue(array(  'd' => $tmp->format("%d"),
142                                          'F' => $tmp->format("%m"),
143                                          'Y' => $tmp->format("%Y"),
144                                  ));
145         } 
146         else {
147             $fecha_fin->setValue(array(  'd' => '',
148                                          'F' => '',
149                                          'Y' => '',
150                                 ));
151         }
152
153         if ($tmp = $SISTEMA->getFechaImplementacion()) { 
154             $fecha_implementacion->setValue(array(   'd' => $tmp->format("%d"),
155                                                      'F' => $tmp->format("%m"),
156                                                      'Y' => $tmp->format("%Y"),
157                                             ));
158         } 
159         else {
160             $fecha_implementacion->setValue(array(   'd' => '',
161                                                      'F' => '',
162                                                      'Y' => '',
163                                            ));
164         }
165
166         $aceptar->setValue('Modificar');
167         
168         //ELIMINACION -> modifico el valor del boton
169         if ($_GET['accion'] == 'e') {
170             $aceptar->setValue('Eliminar');
171             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
172             $FORM->freeze();
173         }
174     } 
175 // }}}
176 //VALIDO EL FORMULARIO {{{
177     if ($FORM->validate()) {        
178         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
179         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
180         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
181         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
182         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
183         $contacto               =& $FORM->getElement  ('contacto'            );
184         $permisos               =& $FORM->getElement  ('permisos'            );
185         $responsable            =& $FORM->getElement  ('responsable'         );
186         $group                  =& $FORM->getElement  ('botones'             );
187         $group                  =& $group->getElements('aceptar'             );
188         $aceptar                =& $group[0];   
189
190         $SISTEMA->setNombre     ($nombre_sistema->getValue());
191         $SISTEMA->setDescripcion($desc_sistema->getValue());
192
193         $f1 =& $fecha_inicio->getValue();
194         $f2 =& $fecha_fin->getValue();
195         $f3 =& $fecha_implementacion->getValue();
196         
197         //SETEO LAS FECHAS
198         if ($f1) {
199                 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
200          }
201          else {
202             $SISTEMA->setFechaInicio();
203         }
204         if ($f2) {
205                 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
206         }
207         else {
208             $SISTEMA->setFechaFin();
209         }
210         if ($f3) {
211                 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
212         }
213         else {
214             $SISTEMA->setFechaImplementacion();
215         }
216         $SISTEMA->setContacto($contacto->getValue());        
217         $SISTEMA->setPermisos($permisos->getSelected());
218         $SISTEMA->setResponsable($responsable->getValue());
219         $botones = $FORM->getSubmitValue('botones');
220         if (@$botones['cancelar']) {
221             header ('Location: sistemas');
222         } 
223         else {
224             $res = $SISTEMA->guardarDatos($aceptar->getValue());
225             if ($aceptar->getValue() != 'Eliminar') {
226                 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
227             }
228             if (PEAR::isError($res)) {
229                 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
230             }
231             else {
232                 $FORM->freeze();
233                 header('Location: sistemas');
234             }
235         }
236     }
237 // }}}
238
239 //DIBUJO LA PAGINA {{{
240     $MARCO->addTitle('ABM Sistema');
241     if (isset($ERROR)) {
242         $MARCO->addBody($ERROR);
243     }
244     $MARCO->addBody($FORM);
245     $MARCO->display();
246 // }}}
247 //FIN
248 ?>