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