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