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