]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-abm.php
Se agrega la funcionalidad de migración de un sistema completo de un host a otro...
[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
35 //XXX OBTENGO LA ACCION {{{
36 switch ($_REQUEST['accion']) {
37     case 'm':
38         $b_accion = 'Modificar';
39         $accion = 'm';
40         break;
41     case 'e':
42         $b_accion = 'Eliminar';
43         $accion = 'e';
44         break;
45     default:
46         $b_accion = 'Grabar';
47         $accion = '';
48         break;
49 }
50 //}}}
51 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
52 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
53 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
54     $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
55 }
56 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
57 //}}}
58 //CREO LOS OBJETO NECESARIOS {{{
59     $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
60 // }}}
61 //OBTENGO LA LISTA DE PERMISOS {{{
62     $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
63 // }}}
64 //AGREGO LOS ELEMENTOS DEL FORM {{{
65     $FORM->addElement ('header'  , 'cabecera'            , 'ABM Sistemas');
66     $FORM->addElement ('hidden'  , 'id_sistema');
67     $FORM->addElement ('text'    , 'nombre_sistema'      , 'Nombre'              , array('size' => '30'));
68     $FORM->addElement ('textarea', 'desc_sistema'        ,
69             'Descripción'         , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
70
71 //xdebug_start_trace();
72
73     $FORM->addElement ('mdate'   , 'fecha_inicio'        , 'Fecha Inicio'        );
74
75 //xdebug_dump_function_trace();
76
77     
78     $FORM->addElement ('mdate'   , 'fecha_fin'           , 'Fecha Fin'           );
79     $FORM->addElement ('mdate'   , 'fecha_implementacion', 'Fecha Implementación');
80     $FORM->addElement ('textarea', 'contacto'            , 'Contacto'            , array('rows' => '2','cols'=>'50'));
81     $FORM->addElement ('select'  , 'permisos'            , 'Permisos'            , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
82     $FORM->addElement ('hidden'  , 'responsable'         , $_SESSION['usuario']); 
83     $FORM->addElement ('hidden', 'accion', $accion);
84     $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
85     $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
86     $FORM->addGroup($group,'botones');
87 // }}}
88 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
89     $botones = $FORM->getSubmitValue('botones');
90     if (!@$botones['cancelar']) {
91         $FORM->addRule('nombre_sistema'      , 'El campo nombre es obligatorio'      , 'required');
92         $FORM->addRule('desc_sistema'        , 'El campo descripción es obligatorio' , 'required');
93         $FORM->addRule('fecha_inicio'        , 'El campo fecha inicio es obligatorio', 'required');
94 //        if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
95             $FORM->addRule('fecha_inicio'        , 'La fecha no es válida', 'fecha');
96             $FORM->addRule('fecha_fin'           , 'La fecha no es válida', 'fecha');
97             $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
98 //        }
99         $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
100     }
101 // }}}
102 //CREO EL OBJETO SISTEMA {{{
103     //Obtengo el id del sistema.
104     $idSistema =& $FORM->getElement('id_sistema');
105     
106     if (isset($_GET['accion']) && $_GET['accion'] != '') {
107     //Viene en el get es -> modificar o eliminar, me ocupo yo.
108         $id_sistema = $_GET['idSistema'];
109         $idSistema->setValue($id_sistema);
110     }
111     else {
112     //Viene en el post, no me ocupo yo.
113         $id_sistema = $idSistema->getValue();
114     }
115
116     $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
117 // }}}
118 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
119     if (isset($_GET['accion']) && $_GET['accion'] != '') {
120     //MODIFICACION -> agrego la info a los elementos
121         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
122         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
123         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
124         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
125         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
126         $contacto               =& $FORM->getElement  ('contacto'            );
127         $permisos               =& $FORM->getElement  ('permisos'            );
128         $responsable            =& $FORM->getElement  ('responsable'         );
129         $group                  =& $FORM->getElement  ('botones'             );
130         $group                  =& $group->getElements('aceptar'             );
131         $aceptar                =& $group[0];   
132
133         $nombre_sistema->setValue($SISTEMA->getNombre());
134         $desc_sistema->setValue  ($SISTEMA->getDescripcion());
135         $contacto->setValue      ($SISTEMA->getContacto());
136
137         if ($SISTEMA->getIdPermisos() != '') {
138             $permisos->setSelected($SISTEMA->getIdPermisos());
139         }
140         if ($SISTEMA->getResponsable() != '') {
141             $responsable->setValue($SISTEMA->getResponsable());
142         }
143         //Seteo las fechas
144         if ($tmp = $SISTEMA->getFechaInicio()) { 
145             $fecha_inicio->setValue(array(   'd' => $tmp->format("%d"),
146                                              'F' => $tmp->format("%m"),
147                                              'Y' => $tmp->format("%Y"),
148                                     ));
149         }
150         else {
151             $fecha_inicio->setValue(array(   'd' => '',
152                                              'F' => '',
153                                              'Y' => '',
154                                    ));
155         }
156
157         
158         if ($tmp = $SISTEMA->getFechaFin()) { 
159             $fecha_fin->setValue(array(  'd' => $tmp->format("%d"),
160                                          'F' => $tmp->format("%m"),
161                                          'Y' => $tmp->format("%Y"),
162                                  ));
163         } 
164         else {
165             $fecha_fin->setValue(array(  'd' => '',
166                                          'F' => '',
167                                          'Y' => '',
168                                 ));
169         }
170
171         if ($tmp = $SISTEMA->getFechaImplementacion()) { 
172             $fecha_implementacion->setValue(array(   'd' => $tmp->format("%d"),
173                                                      'F' => $tmp->format("%m"),
174                                                      'Y' => $tmp->format("%Y"),
175                                             ));
176         } 
177         else {
178             $fecha_implementacion->setValue(array(   'd' => '',
179                                                      'F' => '',
180                                                      'Y' => '',
181                                            ));
182         }
183
184         $aceptar->setValue('Modificar');
185         
186         //ELIMINACION -> modifico el valor del boton
187         if ($_GET['accion'] == 'e') {
188             $aceptar->setValue('Eliminar');
189             $FORM->freeze();
190         }
191     } 
192 // }}}
193 //VALIDO EL FORMULARIO {{{
194     if ($FORM->validate()) {        
195         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
196         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
197         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
198         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
199         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
200         $contacto               =& $FORM->getElement  ('contacto'            );
201         $permisos               =& $FORM->getElement  ('permisos'            );
202         $responsable            =& $FORM->getElement  ('responsable'         );
203         $group                  =& $FORM->getElement  ('botones'             );
204         $group                  =& $group->getElements('aceptar'             );
205         $aceptar                =& $group[0];   
206
207         $SISTEMA->setNombre     ($nombre_sistema->getValue());
208         $SISTEMA->setDescripcion($desc_sistema->getValue());
209
210         $f1 =& $fecha_inicio->getValue();
211         $f2 =& $fecha_fin->getValue();
212         $f3 =& $fecha_implementacion->getValue();
213         
214         //SETEO LAS FECHAS
215         if ($f1) {
216                 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
217          }
218          else {
219             $SISTEMA->setFechaInicio();
220         }
221         if ($f2) {
222                 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
223         }
224         else {
225             $SISTEMA->setFechaFin();
226         }
227         if ($f3) {
228                 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
229         }
230         else {
231             $SISTEMA->setFechaImplementacion();
232         }
233         $SISTEMA->setContacto($contacto->getValue());        
234         $SISTEMA->setPermisos($permisos->getSelected());
235         $SISTEMA->setResponsable($responsable->getValue());
236         $botones = $FORM->getSubmitValue('botones');
237         if (@$botones['cancelar']) {
238             header ('Location: sistemas');
239         } 
240         else {
241             $res = $SISTEMA->guardarDatos($aceptar->getValue());
242             if ($aceptar->getValue() != 'Eliminar') {
243                 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
244             }
245             if (PEAR::isError($res)) {
246                 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
247             }
248             else {
249                 $FORM->freeze();
250                 header('Location: sistemas');
251             }
252         }
253     }
254 // }}}
255
256 //DIBUJO LA PAGINA {{{
257     $MARCO->addTitle('ABM Sistema');
258     if (isset($ERROR)) {
259         $MARCO->addBody($ERROR);
260     }
261     $MARCO->addBody($FORM);
262     $MARCO->display();
263 // }}}
264 //FIN
265 ?>