]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-abm.php
- ABM de sistemas terminado.
[mecon/samurai.git] / sistema / www / sistemas / sistemas-abm.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
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 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26     require_once 'HTML/QuickForm.php';
27     require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php';
28
29 //CREO LOS OBJETO NECESARIOS
30     $SAMURAI = new Samurai($DB);
31     $FORM = new HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
32 //
33 //OBTENGO LA LISTA DE PERMISOS
34     $PERMISOS = $SAMURAI->getSelectPermisos();
35 //
36 //REGISTRO EL ELEMENTO mdate
37 //Van a ir en el quickform nuestro
38     $FORM->registerElementType  ('mdate', 'MECON/HTML/QuickForm/mdate.php', 'HTML_QuickForm_mdate');
39     $FORM->registerRule         ('fecha', 'function', 'validate', 'HTML_QuickForm_mdate');
40     $FORM->setRequiredNote      ('<FONT color="red">*</FONT> indica un campo obligatorio');
41 //
42 //AGREGO LOS ELEMENTOS DEL FORM
43     $FORM->addElement ('header'  , 'cabecera'            , 'ABM Sistemas');
44     $FORM->addElement ('hidden'  , 'id_sistema');
45     $FORM->addElement ('text'    , 'nombre_sistema'      , 'Nombre'              , array('size' => '30'));
46     $FORM->addElement ('textarea', 'desc_sistema'        , 'Descripcion'         , array('rows' => '2','cols'=>'50'));
47     $FORM->addElement ('mdate'   , 'fecha_inicio'        , 'Fecha Inicio'        , array('language'=>'es','format'=>'dFY'));
48     $FORM->addElement ('mdate'   , 'fecha_fin'           , 'Fecha Fin'           , array('language'=>'es','format'=>'dFY'));
49     $FORM->addElement ('mdate'   , 'fecha_implementacion', 'Fecha Implementacion', array('language'=>'es','format'=>'dFY'));
50     $FORM->addElement ('textarea', 'contacto'            , 'Contacto'            , array('rows' => '2','cols'=>'50'));
51     $FORM->addElement ('select'  , 'permisos'            , 'Permisos'            , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
52     $FORM->addElement ('static'  , 'responsable'         , 'Responsable'         , $_SESSION['samurai']['login']); 
53                                                              //Toma por default al que esta logueado, pero si este dato 
54                                                              //es diferente no hay problema, ya lo considere
55     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
56     $FORM->addGroup($group,'botones');
57 //
58 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS
59     $FORM->addRule('nombre_sistema', 'El campo nombre es obligatorio'      , 'required', '', 'client');
60     $FORM->addRule('desc_sistema'  , 'El campo descripcion es obligatorio' , 'required', '', 'client');
61     $FORM->addRule('fecha_inicio'  , 'El campo fecha inicio es obligatorio', 'numeric' , '', 'client');
62     $FORM->addRule('contacto'      , 'El campo contacto es obligatorio'    , 'required', '', 'client');
63 //
64 //LAS FECHAS SOLO LAS VALIDO SI ES UN NUEVO SISTEMA O SI ES UNA MODIFICACION
65     $FORM->addRule('fecha_inicio'        , 'No es una fecha Valida', 'fecha', '', 'client');
66     $FORM->addRule('fecha_fin'           , 'No es una fecha Valida', 'fecha', '', 'client');
67     $FORM->addRule('fecha_implementacion', 'No es una fecha Valida', 'fecha', '', 'client');
68 //
69 //CREO EL OBJETO SISTEMA
70     //Obtengo el id del sistema.
71     $idSistema =& $FORM->getElement('id_sistema');
72     
73     if (isset($_GET['accion']) && $_GET['accion'] != '') {
74     //Viene en el get es -> modificar o eliminar, me ocupo yo.
75         $id_sistema = $_GET['idSistema'];
76         $idSistema->setValue($id_sistema);
77     }
78     else {
79     //Viene en el post, no me ocupo yo.
80         $id_sistema = $idSistema->getValue();
81     }
82
83     $SISTEMA = new Sistema ($DB, $id_sistema);
84 //
85 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM
86     if (isset($_GET['accion']) && $_GET['accion'] != '') {
87     //MODIFICACION -> agrego la info a los elementos
88         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
89         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
90         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
91         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
92         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
93         $contacto               =& $FORM->getElement  ('contacto'            );
94         $permisos               =& $FORM->getElement  ('permisos'            );
95         $responsable            =& $FORM->getElement  ('responsable'         );
96         $group                  =& $FORM->getElement  ('botones'             );
97         $group                  =& $group->getElements('aceptar'             );
98         $aceptar                =& $group[0];   
99
100         $nombre_sistema->setValue($SISTEMA->getNombre());
101         $desc_sistema->setValue  ($SISTEMA->getDescripcion());
102         $contacto->setValue      ($SISTEMA->getContacto());
103
104         if ($SISTEMA->getIdPermisos() != '') {
105             $permisos->setSelected($SISTEMA->getIdPermisos());
106         }
107         if ($SISTEMA->getResponsable() != '') {
108             $responsable->setValue($SISTEMA->getResponsable());
109         }
110         //Seteo las fechas
111         if ($tmp = $SISTEMA->getFechaInicio()) { 
112             $fecha_inicio->setSelectedDate(array(   'd' => $tmp->format("%d"),
113                                                     'F' => $tmp->format("%m"),
114                                                     'Y' => $tmp->format("%Y"),
115                                            ));
116         }
117         if ($tmp = $SISTEMA->getFechaFin()) { 
118             $fecha_fin->setSelectedDate(array(  'd' => $tmp->format("%d"),
119                                                 'F' => $tmp->format("%m"),
120                                                 'Y' => $tmp->format("%Y"),
121                                         ));
122         }
123         if ($tmp = $SISTEMA->getFechaImplementacion()) { 
124             $fecha_implementacion->setSelectedDate(array(   'd' => $tmp->format("%d"),
125                                                             'F' => $tmp->format("%m"),
126                                                             'Y' => $tmp->format("%Y"),
127                                                     ));
128         } 
129
130         $aceptar->setValue('Modificar');
131         
132         //ELIMINACION -> modifico el valor del boton
133         if ($_GET['accion'] == 'e') {
134             $aceptar->setValue('Eliminar');
135             $FORM->freeze();
136         }
137     } 
138 //
139 //VALIDO EL FORMULARIO
140     if ($FORM->validate()) {        
141         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
142         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
143         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
144         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
145         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
146         $contacto               =& $FORM->getElement  ('contacto'            );
147         $permisos               =& $FORM->getElement  ('permisos'            );
148         $responsable            =& $FORM->getElement  ('responsable'         );
149         $group                  =& $FORM->getElement  ('botones'             );
150         $group                  =& $group->getElements('aceptar'             );
151         $aceptar                =& $group[0];   
152
153         $SISTEMA->setNombre     ($nombre_sistema->getValue());
154         $SISTEMA->setDescripcion($desc_sistema->getValue());
155
156         $f1 =& $fecha_inicio->getValue();
157         $f2 =& $fecha_fin->getValue();
158         $f3 =& $fecha_implementacion->getValue();
159         
160         //SETEO LAS FECHAS
161         if ($f1) {
162                 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
163          }
164          else {
165             $SISTEMA->setFechaInicio();
166         }
167         if ($f2) {
168                 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
169         }
170         else {
171             $SISTEMA->setFechaFin();
172         }
173         if ($f3) {
174                 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
175         }
176         else {
177             $SISTEMA->setFechaImplementacion();
178         }
179         $SISTEMA->setContacto($contacto->getValue());        
180         $SISTEMA->setPermisos($permisos->getSelected());
181         $SISTEMA->setResponsable($responsable->_text); //TODO URGENTE Modificar esto. No tiene hay metodo static::getValue()
182         $FORM->freeze();
183         $SISTEMA->guardarDatos($aceptar->getValue());
184         header('Location: sistemas');
185     }
186 //
187
188 //DIBUJO LA PAGINA
189     $renderer =& new HTML_QuickForm_Renderer_Tabla('width="100%"');
190     $FORM->accept($renderer);
191
192     $MARCO = new Marco ('../../conf/confSecciones.php');
193     $MARCO->addTitle('ABM Sistema');
194     $MARCO->addBody($renderer->toHtml());
195     $MARCO->display();
196 //
197 //FIN
198 ?>