Viewing file: procedures.php (5.21 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Select procedures
// Procedure 1, Entidades
// A partir de ID de selección de entidades.
include('connect.php');
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE, RESPONSABLE, NIT, DIRECCION, CONMUTADOR, FAX, LINEAATENCION, EMAIL, DIRHTTP, ENTI FROM ENTIDADES where CODIGO=$id");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_e = $cur[0];
$nombre_e = $cur[1];
$responsable = $cur[2];
$nit = $cur[3];
$direccion = $cur[4];
$conmutador = $cur[5];
$fax = $cur[6];
$lineaatencion = $cur[7];
$email = $cur[8];
$dirhttp = $cur[9];
$enti = $cur[10];
}
// Entidad End
// Procedure 2, TRM
// Selección a partir CODIGO_ENTIDAD de elección de entidades.
// Requiere que se pase el NOMBRE_E
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE FROM TRAMITES where CODENTI=$codigo_entidad and (ESTADO=4 or ESTADO=0)");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_t = $cur[0];
$nombre_t = $cur[1];
}
// TRM End
// Procedure 3, TRM Detail
// Selección a partir CODIGO_T de detalle de trámites.
// Requiere que se pase el NOMBRE_E
include('connect.php');
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE, PARAQUESIRVE, DOCUMENTOENTREGADO, COSTO, TELEFONOINFO, DEPENDENCIA FROM TRAMITES where CODIGO=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_t = $cur[0];
$nombre_t = $cur[1];
$paraquesirve = $cur[2];
$documentoentregado = $cur[3];
$costo = $cur[4];
$telefonoinfo = $cur[5];
$dependencia = $cur[6];
// Subprocedure Detail for Responsible
$stmt_1 = ociparse($c1,"SELECT NOMBRE FROM DEPENDENCIAS where CODIGO=$dependencia");
$result_1 = OCIExecute($stmt_1);
while (OCIFetchInto($stmt_1, $cur_1)) {
$nombre_dependencia = $cur_1[0];
}
}
// TRM Detail End
// Procedure 4, TRM Detail (Quién, Cómo, Cuanto Tiempo y Qué Recibo)
// Selección a partir CODIGO_T de detalle de trámites.
// Desplegable como un sobre detalle.
include('connect.php');
$stmt = ociparse($c1,"SELECT QUIENPERSONAL, QUIENPODER, QUIENCUALQUIERA, COMOPERSONAL, COMOCORREO, COMOFAX, COMOINTERNET, COMOTELEFONO,
COMOQUIOSCO, TIEMPOINMEDIATO, TIEMPOHORAS, TIEMPODIAS, TIEMPOOTROS, ENTREGAPERSONAL, ENTREGAINTERNET, ENTREGATELEFONO,
ENTREGAQUIOSCO, ENTREGACORREO FROM TRAMITES where CODIGO=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$q_personal = $cur[0];
$q_poder = $cur[1];
$q_cualquiera = $cur[2];
$c_personal = $cur[3];
$c_correo = $cur[4]; // 100
$c_fax = $cur[5]; // 50
$c_internet = $cur[6]; // 100
$c_telefono = $cur[7]; // 50
$c_quiosco = $cur[8];
$t_inmediato = $cur[9];
$t_horas = $cur[10]; // 2
$t_dias = $cur[11]; // 2
$t_otros = $cur[12]; // 250
$e_personal = $cur[13];
$e_internet = $cur[14];
$e_telefono = $cur[15];
$e_quiosco = $cur[16];
$e_correo = $cur[17];
}
// TRM Detail (Quién, Cómo, Cuanto Tiempo y Qué Recibo) End
// Procedure 5, TRM Detail Steps
// Selección a partir CODIGO_T de detalle de trámites.
// Desplegable como un sobre detalle.
include('connect.php');
$stmt = ociparse($c1,"SELECT NOMBRE, LUGAR, DIRECCION, TELEFONO, COSTO, SITIOPAGO, FORMAPAGO FROM PASOS where CODIGOTRAMITE=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$nombre_p = $cur[0];
$lugar_p = $cur[1];
$direccion_p = $cur[2];
$telefono_p = $cur[3];
$costo_p = $cur[4];
$sitiopago_p = $cur[5];
$formapago_p = $cur[6];
}
// Detail Steps End
// Procedure 6, TRM Detail Documents
// Selección a partir CODIGO_T de detalle de trámites.
// Desplegable como un sobre detalle.
include('connect.php');
$stmt = ociparse($c1,"SELECT CODIGODOCUMENTO FROM DOCUMENTOSXTRAMITE where CODIGOTRAMITE=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigodocumento = $cur[0];
// Subprocedure Detail for Documents
$stmt_1 = ociparse($c1,"SELECT NOMBRE, DONDE, COMENTARIO, COSTO FROM DOCUMENTOS where CODIGO=$codigodocumento");
$result_1 = OCIExecute($stmt_1);
while (OCIFetchInto($stmt_1, $cur_1)) {
$nombre_doc = $cur_1[0];
$donde_doc = $cur_1[1];
$comentario_doc = $cur_1[2];
$costo_doc = $cur_1[3];
}
}
// TRM Detail Documents End
// Procedure 7, TRM Detail Require
// Selección a partir CODIGO_T de detalle de trámites.
// Desplegable como un sobre detalle.
include('connect.php');
$stmt = ociparse($c1,"SELECT CODIGOREQUISITO FROM REQUISITOSXTRAMITE where CODIGOTRAMITE=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigorequisito = $cur[0];
// Subprocedure Detail for Require
$stmt_1 = ociparse($c1,"SELECT REQUISITO FROM REQUISITOS where CODIGO=$codigorequisito");
$result_1 = OCIExecute($stmt_1);
while (OCIFetchInto($stmt_1, $cur_1)) {
$requisito_req = $cur_1[0];
}
}
// TRM Detail Require End
// Procedure 8, TRM Detail Extended
// Selección a partir CODIGO_T de detalle de trámites.
// Requiere que se pase el NOMBRE_E
include('connect.php');
$stmt = ociparse($c1,"SELECT NORMATIVIDAD, INFORMACIONAPOYO, FECHASRECORDAR FROM TRAMITES where CODIGO=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$normatividad = $cur[0];
$informacionapoyo= $cur[1];
$fechasrecordar = $cur[2];
}
// TRM Detail Extended End
?>
|