]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios/infoleg/pedido.php
Se agrega BandasNovedades.
[mecon/intranet.git] / sistema / www / servicios / infoleg / pedido.php
1 <?php 
2 /*-----------------------------------------------------------------------------
3 Intranet del Ministerio de Economía
4 Pedidos a Infoleg
5 -------------------------------------------------------------------------------
6 Myrna Degano <mdegan@mecon.gov.ar>
7 ------------------------------------------------------------------------------*/
8
9 //Lib de 'Pedidos a Infoleg'
10 require_once 'INFOLEG/Operador.php';
11 require_once 'INFOLEG/Solicitante.php';
12 require_once 'INFOLEG/Pedido.php';
13
14 require_once 'MECON/HTML/Tabla.php';
15 require_once 'HTML/Table.php';
16 require_once '../../../local_lib/HTML_DietMarco.php';
17 require_once '../../../local_lib/HTML_Mensaje.php';
18 require_once 'MECON/HTML/QuickFormSimple.php';
19 require_once 'MECON/HTML/Image.php';
20 require_once 'DB.php';
21
22 if(!isset($_SESSION['documento'])){
23         header('Location: ../../servicios.php');
24         exit;
25 }
26
27 //Conexión a la BD
28 //CAMBIAR POR INTRANET-DB
29 $dbh = DB::connect("mysql://intranet:intranet@localhost/CDI", true);
30 if (DB::isError($dbh)) {
31     die ($dbh->getMessage());
32 }
33
34 //Usuario que realiza el pedido
35 $nrodoc = $_SESSION['documento'];
36 $user = $_SESSION['usuario'];
37 $solicitante =& new INFOLEG_Solicitante($dbh, $nrodoc, $user);
38
39 //Imágenes
40 $IMG_Viñeta =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif', '>>');
41 $IMG_OK =& new MECON_HTML_Image('../../images/servicios_ok.gif', 'ok');
42 $IMG_Error =& new MECON_HTML_Image('/MECON/images/general_no_autorizado.gif', 'X');
43
44 //Marco de servicios en intranet
45 $MARCO     = new HTML_DietMarco('servicios', 'Pedidos a Infoleg');
46 //$MARCO->addTitle('Pedidos a Infoleg');
47
48 if (! isset($_POST['pedido'])){
49
50     if (! INFOLEG_Operador::oprDisponibleIntranet($dbh)){
51         //No hay operador disponible para atender el pedido => mensaje de error
52         
53         $MSG =& new HTML_Mensaje ('error', 'No hay operadores asignados para atender su pedido', 490); 
54         $MARCO->addBodyContent('<br><br>');
55         $MARCO->addBodyContent($MSG);
56     }
57     else{
58         //Datos del solicitante
59         $datos = $solicitante->obtenerDatos();
60
61         //Elementos del Formulario
62         $FORM =& new MECON_HTML_QuickFormSimple ('form', 'post', './pedido.php', '', 'onSubmit="return validar(this)"');
63     
64         $nombre = (isset($datos['nombre']))?$datos['nombre']:'';
65         $input_nombre =& $FORM->addElement ('text', 'nombre', 'nombre', 
66                                             array('size' => '20', 'maxlength'=>'30', 'value'=>$nombre));
67
68         $apellido = (isset($datos['apellido']))?$datos['apellido']:'';
69         $input_apellido =& $FORM->addElement ('text', 'apellido', 'apellido', 
70                                                 array('size' => '20', 'maxlength'=>'30', 'value'=>$apellido));
71
72             $tipodocs = array('CI'=>'CI', 'DU'=>'DNI', 'LC'=>'LC', 'LE'=>'LE', 'PS'=>'PS');
73         $select_tipodoc =& $FORM->addElement ('select', 'tipodoc', 'tipodoc', $tipodocs);
74         if (isset($datos['tipodoc'])){
75             $select_tipodoc->setSelected($datos['tipodoc']);
76         }
77
78         $input_nrodoc =& $FORM->addElement ('hidden', 'nrodoc', 'nrodoc', array('value' => $nrodoc));
79
80         $institucion = (isset($datos['institucion']))?$datos['institucion']:'Ministerio de Economía';
81         $input_institucion =& $FORM->addElement ('text', 'institucion', 'institucion', 
82                                                     array('size' => '20', 'maxlength'=>'50', 'value'=>$institucion));
83
84         $domicilio = (isset($datos['domicilio']))?$datos['domicilio']:'';
85         $input_domicilio =& $FORM->addElement ('text', 'domicilio', 'domicilio', 
86                                                 array('size' => '20', 'maxlength'=>'50', 'value'=>$domicilio));
87
88         $piso = (isset($datos['piso']))?$datos['piso']:'';
89         $input_piso =& $FORM->addElement ('text', 'piso', 'piso', 
90                                             array('size' => '5', 'maxlength'=>'10', 'value'=>$piso));
91
92         $oficina = (isset($datos['oficina']))?$datos['oficina']:'';
93         $input_oficina =& $FORM->addElement ('text', 'oficina', 'oficina', 
94                                                 array('size' => '5', 'maxlength'=>'10', 'value'=>$oficina));
95
96         $interno = (isset($datos['interno']))?$datos['interno']:'';
97         $input_interno =& $FORM->addElement ('text', 'interno', 'interno', 
98                                                 array('size' => '5', 'maxlength'=>'10', 'value'=>$interno));
99
100         $telefono = (isset($datos['telefono']))?$datos['telefono']:'';
101         $input_telefono =& $FORM->addElement ('text', 'telefono', 'telefono', 
102                                                 array('size' => '10', 'maxlength'=>'20', 'value'=>$telefono));
103
104         $fax = (isset($datos['fax']))?$datos['fax']:'';
105         $input_fax =& $FORM->addElement ('text', 'fax', 'fax', 
106                                             array('size' => '10', 'maxlength'=>'20', 'value'=>$fax));
107
108         $email = (isset($datos['email']))?$datos['email']:'';
109         $input_email =& $FORM->addElement ('text', 'email', 'email', 
110                                             array('size' => '20', 'maxlength'=>'50', 'value'=>$email));
111
112         $textarea_pedido =& $FORM->addElement ('textarea', 'pedido', 'pedido', array('cols' => '45', 'rows'=>'5', 'wrap'=>'virtual'));
113         $submit =& $FORM->addElement ('submit', 'Enviar', 'Enviar');
114
115         //Función para validar el formulario
116         $script = 
117 <<<EOT
118         function validar (theForm){ 
119             if (theForm.nombre.value==''){
120                 alert('El campo NOMBRE es obligatorio');
121                 theForm.nombre.focus();
122                 return false;
123             }
124             if (theForm.apellido.value==''){
125                 alert('El campo APELLIDO es obligatorio');
126                 theForm.apellido.focus();
127                 return false;
128             }
129             if (theForm.domicilio.value==''){
130                 alert('El campo DOMICILIO es obligatorio');
131                 theForm.domicilio.focus();
132                 return false;
133             }
134             if (theForm.piso.value==''){
135                 alert('El campo PISO es obligatorio');
136                 theForm.piso.focus();
137                 return false;
138             }
139             if (theForm.oficina.value==''){
140                 alert('El campo OFICINA es obligatorio');
141                 theForm.oficina.focus();
142                 return false;
143             }
144             if (theForm.interno.value==''){
145                 alert('El campo INTERNO es obligatorio');
146                 theForm.interno.focus();
147                 return false;
148             }
149             if (theForm.email.value==''){
150                 alert('El campo E-MAIL es obligatorio');
151                 theForm.email.focus();
152                 return false;
153             }
154             if (theForm.telefono.value==''){
155                 theForm.telefono.value='-';
156             }
157             if (theForm.institucion.value==''){
158                 theForm.institucion.value='-';
159             }
160             if (theForm.fax.value==''){
161                 theForm.fax.value='-';
162             }
163             if (theForm.pedido.value==''){
164                 alert('Ingrese su pedido');
165                 theForm.pedido.focus();
166                 return false;
167             }
168             return true;
169         } 
170 EOT;
171
172         $MARCO->addScriptDeclaration($script);
173
174         //Tabla Pedido
175         $TABLA =& new MECON_HTML_Tabla(array('width'=>'600', 'align'=>'center'), 'medio');
176         $TABLA->addRow( array($IMG_Viñeta->toHtml().'Datos Personales')); 
177         $TABLA->addRow( array('Nombre', $input_nombre->toHtml(), 'Apellido', '', $input_apellido->toHtml())); 
178         $TABLA->addRow( array('Documento', $select_tipodoc->tohtml().'&nbsp;'.$nrodoc.$input_nrodoc->toHtml(), 'Institución', '', $input_institucion->toHtml())); 
179         $TABLA->addRow( array('Domicilio', $input_domicilio->toHtml(), 'Piso', $input_piso->toHtml(), 'Oficina', $input_oficina->toHtml(), 'Interno', $input_interno->toHtml())); 
180         $TABLA->addRow( array('E-mail', $input_email->toHtml(), 'Fax', $input_fax->toHtml(), 'Teléfono', $input_telefono->toHtml())); 
181         $TABLA->addRow( array($IMG_Viñeta->toHtml().'Pedido')); 
182         $TABLA->addRow( array($textarea_pedido->toHtml())); 
183         $TABLA->addRow( array($submit->toHtml())); 
184
185         $TABLA->setColAttributes(0, 'titulo width="100" align="left"');
186         $TABLA->setColAttributes(1, 'comun width="200" align="left"');
187         $TABLA->setColAttributes(2, 'titulo width="50" align="left"');
188         $TABLA->setColAttributes(3, 'comun width="50" align="left"');
189         $TABLA->setColAttributes(4, 'titulo width="50" align="left"');
190         $TABLA->setColAttributes(5, 'comun width="50" align="left"');
191         $TABLA->setColAttributes(6, 'titulo width="50" align="left"');
192         $TABLA->setColAttributes(7, 'comun width="50" align="left"');
193         $TABLA->setCellAttributes(0, 0, 'cabecera colspan="8" align="left"');
194         $TABLA->setCellAttributes(1, 2, 'colspan="2" titulo align="left"');
195         $TABLA->setCellAttributes(2, 2, 'colspan="2" titulo align="left"');
196         $TABLA->setCellAttributes(5, 0, 'cabecera colspan="8" align="left"');
197         $TABLA->setCellAttributes(6, 0, 'comun colspan="8" align="center"');
198         $TABLA->setCellAttributes(7, 0, 'comun colspan="8" align="center"');
199         $TABLA->setCellAttributes(1, 4, 'colspan="4" comun align="left"');
200         $TABLA->setCellAttributes(2, 4, 'colspan="4" comun align="left"');
201         $TABLA->setCellAttributes(4, 5, 'colspan="3" comun align="left"');
202
203         //Contenido de la página
204         $MARCO->addBodyContent($FORM->getBegin());
205         $MARCO->addBodyContent($TABLA);
206         $MARCO->addBodyContent($FORM->getEnd());
207     }
208 }
209 else{
210     //Validar los datos enviados por el cliente
211     if (strlen($_POST['nombre']) == 0 OR
212         strlen($_POST['apellido']) == 0 OR
213         strlen($_POST['tipodoc']) == 0 OR
214         strlen($_POST['nrodoc']) == 0 OR
215         strlen($_POST['domicilio']) == 0 OR
216         strlen($_POST['piso']) == 0 OR
217         strlen($_POST['oficina']) == 0 OR
218         strlen($_POST['interno']) == 0 OR
219         strlen($_POST['email']) == 0 OR
220         strlen($_POST['pedido']) == 0){
221
222         //Mensaje de Error
223         $MSG =& new HTML_Mensaje ('alerta', 'Datos Incorrectos. Intente nuevamente.', 390); 
224         $MARCO->addBodyContent('<br><br>');
225         $MARCO->addBodyContent($MSG);
226     }
227     else{
228         //Validar datos no obligatorios (-)
229         $_POST['institucion'] = (strlen($_POST['institucion'])==0)?'-':$_POST['institucion'];
230         $_POST['fax'] = (strlen($_POST['institucion'])==0)?'-':$_POST['fax'];
231         $_POST['telefono'] = (strlen($_POST['institucion'])==0)?'-':$_POST['telefono'];
232         
233         //Pedido Formulado
234         $solicitante->_actualizarDatos($_POST);
235         $operador_asignado = INFOLEG_Operador::obtenerOprIntranet($dbh);
236         INFOLEG_Pedido::alta($dbh, $_POST['tipodoc'], $_POST['nrodoc'], 
237                             $operador_asignado, $_POST['pedido']);
238     
239         $MSG =& new HTML_Mensaje ('ok', 'Su pedido ha sido registrado', 300); 
240         $MARCO->addBodyContent('<br><br>');
241         $MARCO->addBodyContent($MSG);
242     }
243 }
244
245 $MARCO->display();
246 ?>