2 /*-----------------------------------------------------------------------------
3 Intranet del Ministerio de Economía
5 -------------------------------------------------------------------------------
6 Myrna Degano <mdegan@mecon.gov.ar>
7 ------------------------------------------------------------------------------*/
9 //Lib de 'Pedidos a Infoleg'
10 require_once 'INFOLEG/Operador.php';
11 require_once 'INFOLEG/Solicitante.php';
12 require_once 'INFOLEG/Pedido.php';
14 require_once 'MECON/HTML/Tabla.php';
15 require_once 'HTML/Table.php';
16 require_once '../../../local_lib/HTML_DietMarco.php';
17 require_once 'MECON/HTML/QuickFormSimple.php';
18 require_once 'MECON/HTML/Image.php';
19 require_once 'DB.php';
21 if(!isset($_SESSION['documento'])){
22 header('Location: ../../servicios.php');
27 //CAMBIAR POR INTRANET-DB
28 $dbh = DB::connect("mysql://intranet:intranet@localhost/CDI", true);
29 if (DB::isError($dbh)) {
30 die ($dbh->getMessage());
33 //Usuario que realiza el pedido
34 $nrodoc = $_SESSION['documento'];
35 $user = $_SESSION['usuario'];
36 $solicitante =& new INFOLEG_Solicitante($dbh, $nrodoc, $user);
39 $IMG_Viñeta =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif', '>>');
40 $IMG_OK =& new MECON_HTML_Image('../../images/servicios_ok.gif', 'ok');
41 $IMG_Error =& new MECON_HTML_Image('/MECON/images/general_no_autorizado.gif', 'X');
43 //Marco de servicios en intranet
44 $MARCO = new HTML_DietMarco('servicios', 'Servicios');
45 $MARCO->addTitle('Pedidos a Infoleg');
46 $MARCO->addStyleSheet('../../css/servicios_infoleg.css');
49 if (! isset($_POST['pedido'])){
51 if (! INFOLEG_Operador::oprDisponibleIntranet($dbh)){
52 //No hay operador disponible para atender el pedido => mensaje de error
54 $TABLA =& new HTML_Table(array('border'=>'0', 'width'=>'760'));
55 $TABLA->addRow( array($IMG_Error->toHtml()),
56 array('align'=>'center'));
57 $TABLA->addRow( array('No hay operadores asignados para atender su pedido.'),
58 array('align'=>'center', 'class'=>'txt_naranja'));
59 $TABLA->addRow( array('Intente más tarde.'),
60 array('align'=>'center', 'class'=>'txt_naranja'));
62 $MARCO->addBodyContent($TABLA);
65 //Datos del solicitante
66 $datos = $solicitante->obtenerDatos();
68 //Elementos del Formulario
69 $FORM =& new MECON_HTML_QuickFormSimple ('form', 'post', './pedido.php', '', 'onSubmit="return validar(this)"');
71 $nombre = (isset($datos['nombre']))?$datos['nombre']:'';
72 $input_nombre =& $FORM->addElement ('text', 'nombre', 'nombre',
73 array('size' => '20', 'maxlength'=>'30', 'value'=>$nombre));
75 $apellido = (isset($datos['apellido']))?$datos['apellido']:'';
76 $input_apellido =& $FORM->addElement ('text', 'apellido', 'apellido',
77 array('size' => '20', 'maxlength'=>'30', 'value'=>$apellido));
79 $tipodocs = array('CI'=>'CI', 'DU'=>'DNI', 'LC'=>'LC', 'LE'=>'LE', 'PS'=>'PS');
80 $select_tipodoc =& $FORM->addElement ('select', 'tipodoc', 'tipodoc', $tipodocs);
81 if (isset($datos['tipodoc'])){
82 $select_tipodoc->setSelected($datos['tipodoc']);
85 $input_nrodoc =& $FORM->addElement ('hidden', 'nrodoc', 'nrodoc', array('value' => $nrodoc));
87 $institucion = (isset($datos['institucion']))?$datos['institucion']:'Ministerio de Economía';
88 $input_institucion =& $FORM->addElement ('text', 'institucion', 'institucion',
89 array('size' => '20', 'maxlength'=>'50', 'value'=>$institucion));
91 $domicilio = (isset($datos['domicilio']))?$datos['domicilio']:'';
92 $input_domicilio =& $FORM->addElement ('text', 'domicilio', 'domicilio',
93 array('size' => '20', 'maxlength'=>'50', 'value'=>$domicilio));
95 $piso = (isset($datos['piso']))?$datos['piso']:'';
96 $input_piso =& $FORM->addElement ('text', 'piso', 'piso',
97 array('size' => '5', 'maxlength'=>'10', 'value'=>$piso));
99 $oficina = (isset($datos['oficina']))?$datos['oficina']:'';
100 $input_oficina =& $FORM->addElement ('text', 'oficina', 'oficina',
101 array('size' => '5', 'maxlength'=>'10', 'value'=>$oficina));
103 $interno = (isset($datos['interno']))?$datos['interno']:'';
104 $input_interno =& $FORM->addElement ('text', 'interno', 'interno',
105 array('size' => '5', 'maxlength'=>'10', 'value'=>$interno));
107 $telefono = (isset($datos['telefono']))?$datos['telefono']:'';
108 $input_telefono =& $FORM->addElement ('text', 'telefono', 'telefono',
109 array('size' => '10', 'maxlength'=>'20', 'value'=>$telefono));
111 $fax = (isset($datos['fax']))?$datos['fax']:'';
112 $input_fax =& $FORM->addElement ('text', 'fax', 'fax',
113 array('size' => '10', 'maxlength'=>'20', 'value'=>$fax));
115 $email = (isset($datos['email']))?$datos['email']:'';
116 $input_email =& $FORM->addElement ('text', 'email', 'email',
117 array('size' => '20', 'maxlength'=>'50', 'value'=>$email));
119 $textarea_pedido =& $FORM->addElement ('textarea', 'pedido', 'pedido', array('cols' => '45', 'rows'=>'5', 'wrap'=>'virtual'));
120 $submit =& $FORM->addElement ('submit', 'Enviar', 'Enviar');
122 //Función para validar el formulario
125 function validar (theForm){
126 if (theForm.nombre.value==''){
127 alert('El campo NOMBRE es obligatorio');
128 theForm.nombre.focus();
131 if (theForm.apellido.value==''){
132 alert('El campo APELLIDO es obligatorio');
133 theForm.apellido.focus();
136 if (theForm.domicilio.value==''){
137 alert('El campo DOMICILIO es obligatorio');
138 theForm.domicilio.focus();
141 if (theForm.piso.value==''){
142 alert('El campo PISO es obligatorio');
143 theForm.piso.focus();
146 if (theForm.oficina.value==''){
147 alert('El campo OFICINA es obligatorio');
148 theForm.oficina.focus();
151 if (theForm.interno.value==''){
152 alert('El campo INTERNO es obligatorio');
153 theForm.interno.focus();
156 if (theForm.email.value==''){
157 alert('El campo E-MAIL es obligatorio');
158 theForm.email.focus();
161 if (theForm.telefono.value==''){
162 theForm.telefono.value='-';
164 if (theForm.institucion.value==''){
165 theForm.institucion.value='-';
167 if (theForm.fax.value==''){
168 theForm.fax.value='-';
170 if (theForm.pedido.value==''){
171 alert('Ingrese su pedido');
172 theForm.pedido.focus();
179 $MARCO->addScriptDeclaration($script);
182 $TABLA =& new MECON_HTML_Tabla(array('width'=>'600', 'align'=>'center'), 'medio');
183 $TABLA->addRow( array($IMG_Viñeta->toHtml().'Datos Personales'));
184 $TABLA->addRow( array('Nombre', $input_nombre->toHtml(), 'Apellido', '', $input_apellido->toHtml()));
185 $TABLA->addRow( array('Documento', $select_tipodoc->tohtml().' '.$nrodoc.$input_nrodoc->toHtml(), 'Institución', '', $input_institucion->toHtml()));
186 $TABLA->addRow( array('Domicilio', $input_domicilio->toHtml(), 'Piso', $input_piso->toHtml(), 'Oficina', $input_oficina->toHtml(), 'Interno', $input_interno->toHtml()));
187 $TABLA->addRow( array('E-mail', $input_email->toHtml(), 'Fax', $input_fax->toHtml(), 'Teléfono', $input_telefono->toHtml()));
188 $TABLA->addRow( array($IMG_Viñeta->toHtml().'Pedido'));
189 $TABLA->addRow( array($textarea_pedido->toHtml()));
190 $TABLA->addRow( array($submit->toHtml()));
192 $TABLA->setColAttributes(0, 'titulo width="100" align="left"');
193 $TABLA->setColAttributes(1, 'comun width="200" align="left"');
194 $TABLA->setColAttributes(2, 'titulo width="50" align="left"');
195 $TABLA->setColAttributes(3, 'comun width="50" align="left"');
196 $TABLA->setColAttributes(4, 'titulo width="50" align="left"');
197 $TABLA->setColAttributes(5, 'comun width="50" align="left"');
198 $TABLA->setColAttributes(6, 'titulo width="50" align="left"');
199 $TABLA->setColAttributes(7, 'comun width="50" align="left"');
200 $TABLA->setCellAttributes(0, 0, 'cabecera colspan="8" align="left"');
201 $TABLA->setCellAttributes(1, 2, 'colspan="2" titulo align="left"');
202 $TABLA->setCellAttributes(2, 2, 'colspan="2" titulo align="left"');
203 $TABLA->setCellAttributes(5, 0, 'cabecera colspan="8" align="left"');
204 $TABLA->setCellAttributes(6, 0, 'comun colspan="8" align="center"');
205 $TABLA->setCellAttributes(7, 0, 'comun colspan="8" align="center"');
206 $TABLA->setCellAttributes(1, 4, 'colspan="4" comun align="left"');
207 $TABLA->setCellAttributes(2, 4, 'colspan="4" comun align="left"');
208 $TABLA->setCellAttributes(4, 5, 'colspan="3" comun align="left"');
210 //Contenido de la página
211 $MARCO->addBodyContent($FORM->getBegin());
212 $MARCO->addBodyContent($TABLA);
213 $MARCO->addBodyContent($FORM->getEnd());
219 $solicitante->_actualizarDatos($_POST);
220 $operador_asignado = INFOLEG_Operador::obtenerOprIntranet($dbh);
221 INFOLEG_Pedido::alta($dbh, $_POST['tipodoc'], $_POST['nrodoc'],
222 $operador_asignado, $_POST['pedido']);
224 $TABLA =& new HTML_Table(array('border'=>'0', 'width'=>'760'));
225 $TABLA->addRow( array($IMG_OK->toHtml()),
226 array('align'=>'center'));
227 $TABLA->addRow( array('Su pedido ha sido registrado'),
228 array('align'=>'center', 'class'=>'txt_negro'));
230 $MARCO->addBodyContent($TABLA);