]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-abm.php
95f28be82396c99cc05966c64e1a56aaa53e74f9
[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 //CREO LOS OBJETO NECESARIOS {{{
35     $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
36 // }}}
37 //OBTENGO LA LISTA DE PERMISOS {{{
38     $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
39 // }}}
40 //AGREGO LOS ELEMENTOS DEL FORM {{{
41     $FORM->addElement ('header'  , 'cabecera'            , 'ABM Sistemas');
42     $FORM->addElement ('hidden'  , 'id_sistema');
43     $FORM->addElement ('text'    , 'nombre_sistema'      , 'Nombre'              , array('size' => '30'));
44     $FORM->addElement ('textarea', 'desc_sistema'        , 'Descripcion'         , array('rows' => '2','cols'=>'50'));
45     $FORM->addElement ('mdate'   , 'fecha_inicio'        , 'Fecha Inicio'        );
46     $FORM->addElement ('mdate'   , 'fecha_fin'           , 'Fecha Fin'           );
47     $FORM->addElement ('mdate'   , 'fecha_implementacion', 'Fecha Implementacion');
48     $FORM->addElement ('textarea', 'contacto'            , 'Contacto'            , array('rows' => '2','cols'=>'50'));
49     $FORM->addElement ('select'  , 'permisos'            , 'Permisos'            , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
50     $FORM->addElement ('hidden'  , 'responsable'         , $_SESSION['samurai']['login']); 
51     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
52     $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
53     $FORM->addGroup($group,'botones');
54 // }}}
55 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
56     $botones = $FORM->getSubmitValue('botones');
57     if (!@$botones['cancelar']) {
58         $FORM->addRule('nombre_sistema'      , 'El campo nombre es obligatorio'      , 'required');
59         $FORM->addRule('desc_sistema'        , 'El campo descripcion es obligatorio' , 'required');
60         $FORM->addRule('fecha_inicio'        , 'El campo fecha inicio es obligatorio', 'required');
61 //        if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
62             $FORM->addRule('fecha_inicio'        , 'La fecha no es válida', 'fecha');
63             $FORM->addRule('fecha_fin'           , 'La fecha no es válida', 'fecha');
64             $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
65 //        }
66         $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
67     }
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 SAMURAI_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         else {
118             $fecha_inicio->setSelectedDate(array(   'd' => '',
119                                                     'F' => '',
120                                                     'Y' => '',
121                                             ));
122         }
123
124         
125         if ($tmp = $SISTEMA->getFechaFin()) { 
126             $fecha_fin->setSelectedDate(array(  'd' => $tmp->format("%d"),
127                                                 'F' => $tmp->format("%m"),
128                                                 'Y' => $tmp->format("%Y"),
129                                         ));
130         } 
131         else {
132             $fecha_fin->setSelectedDate(array(  'd' => '',
133                                                 'F' => '',
134                                                 'Y' => '',
135                                         ));
136         }
137
138         if ($tmp = $SISTEMA->getFechaImplementacion()) { 
139             $fecha_implementacion->setSelectedDate(array(   'd' => $tmp->format("%d"),
140                                                             'F' => $tmp->format("%m"),
141                                                             'Y' => $tmp->format("%Y"),
142                                                     ));
143         } 
144         else {
145             $fecha_implementacion->setSelectedDate(array(   'd' => '',
146                                                             'F' => '',
147                                                             'Y' => '',
148                                                     ));
149         }
150
151         $aceptar->setValue('Modificar');
152         
153         //ELIMINACION -> modifico el valor del boton
154         if ($_GET['accion'] == 'e') {
155             $aceptar->setValue('Eliminar');
156             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
157             $FORM->freeze();
158         }
159     } 
160 // }}}
161 //VALIDO EL FORMULARIO {{{
162     if ($FORM->validate()) {        
163         $nombre_sistema         =& $FORM->getElement  ('nombre_sistema'      );
164         $desc_sistema           =& $FORM->getElement  ('desc_sistema'        );
165         $fecha_inicio           =& $FORM->getElement  ('fecha_inicio'        );
166         $fecha_fin              =& $FORM->getElement  ('fecha_fin'           );
167         $fecha_implementacion   =& $FORM->getElement  ('fecha_implementacion');
168         $contacto               =& $FORM->getElement  ('contacto'            );
169         $permisos               =& $FORM->getElement  ('permisos'            );
170         $responsable            =& $FORM->getElement  ('responsable'         );
171         $group                  =& $FORM->getElement  ('botones'             );
172         $group                  =& $group->getElements('aceptar'             );
173         $aceptar                =& $group[0];   
174
175         $SISTEMA->setNombre     ($nombre_sistema->getValue());
176         $SISTEMA->setDescripcion($desc_sistema->getValue());
177
178         $f1 =& $fecha_inicio->getValue();
179         $f2 =& $fecha_fin->getValue();
180         $f3 =& $fecha_implementacion->getValue();
181         
182         //SETEO LAS FECHAS
183         if ($f1) {
184                 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
185          }
186          else {
187             $SISTEMA->setFechaInicio();
188         }
189         if ($f2) {
190                 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
191         }
192         else {
193             $SISTEMA->setFechaFin();
194         }
195         if ($f3) {
196                 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
197         }
198         else {
199             $SISTEMA->setFechaImplementacion();
200         }
201         $SISTEMA->setContacto($contacto->getValue());        
202         $SISTEMA->setPermisos($permisos->getSelected());
203         $SISTEMA->setResponsable($responsable->getValue());
204         $botones = $FORM->getSubmitValue('botones');
205         if (@$botones['cancelar']) {
206             header ('Location: sistemas');
207         } 
208         else {
209             $res = $SISTEMA->guardarDatos($aceptar->getValue());
210             if ($aceptar->getValue() != 'Eliminar') {
211                 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
212             }
213             if (PEAR::isError($res)) {
214                 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
215             }
216             else {
217                 $FORM->freeze();
218                 header('Location: sistemas');
219             }
220         }
221     }
222 // }}}
223
224 //DIBUJO LA PAGINA {{{
225     $MARCO = new Marco ('../../conf/confSecciones.php');
226     $MARCO->addTitle('ABM Sistema');
227     if (isset($ERROR)) {
228         $MARCO->addBody($ERROR);
229     }
230     $MARCO->addBody($FORM);
231     $MARCO->display();
232 // }}}
233 //FIN
234 ?>