Beispiel #1
0
    $result->MoveNext();
}
$result = makeList($db);
$mis_ciudades = array();
while (!$result->EOF) {
    $dpto_codi = $result->fields["dpto_codi"];
    $dpto_nomb = $result->fields["dpto_nomb"];
    $mis_ciudades[$dpto_codi] = ucwords(htmlentities(StrValido($dpto_nomb)));
    $result->MoveNext();
}
$result = makeListMun($db);
while (!$result->EOF) {
    $DPTO_CODI = $result->fields["DPTO_CODI"];
    $MUNI_CODI = $result->fields["MUNI_CODI"];
    $MUNI_NOMB = $result->fields["MUNI_NOMB"];
    $mis_municipios[] = array('DPTO_CODI' => $DPTO_CODI, 'MUNI_CODI' => $MUNI_CODI, 'MUNI_NOMB' => ucwords(htmlentities(StrValido($MUNI_NOMB))));
    $result->MoveNext();
}
if (trim($_GET["wp"]) == "sigov" || trim($_GET["wp"]) == "sigob" || trim(strtolower($_GET["wp"])) == "sismeg") {
    $mrecCodi = 7;
}
$identificadorArchivo = substr(md5(uniqid(rand(), 1)), 0, 5);
if ($_SERVER["REQUEST_URI"]) {
    $paginaOrigen = $_SERVER["REQUEST_URI"];
}
$smarty->assign("especial", $especial);
$smarty->assign("identificadorArchivo", $identificadorArchivo);
$smarty->assign("tipos", $tipos);
$smarty->assign("descrip", $descrip);
$smarty->assign("Departamento", $mis_ciudades);
$smarty->assign("Municipio", $mis_municipios);
Beispiel #2
0
                $elementos[$i][6] = "../iconos/imgODT.jpg";
                break;
            case 'pdf':
                $elementos[$i][6] = "../iconos/imgPDF.jpg";
                break;
            default:
                $elementos[$i][6] = "../iconos/comentarios.gif";
                break;
        }
        $elementos[$i][1] = $ruta;
        $ruta = "";
        $i++;
    }
    $rsAnexos->MoveNext();
}
$n = 10;
$cell = 3;
$smarty->assign("elementos", $elementos);
$smarty->assign("n", $n);
$smarty->assign("cell", $cell);
$smarty->assign("radicadopadre", $radicadopadre);
$smarty->assign("ENLACE2", $enlace2);
$smarty->assign("fechacontestado", $fechacontestado);
$smarty->assign("contestado", $respuesta);
$smarty->assign("ENLACE", $enlace);
$smarty->assign("DEPARTAMENTO", ucwords(StrValido($DEPARTAMENTO)));
$smarty->assign("MUNICIPIO", ucwords(StrValido($MUNICIPIO)));
$smarty->display('respuesta.tpl');
$ruta_raiz = "..";
$numrad = $Radi;
//include "../linkArchivo.php";
Beispiel #3
0
function etiqueta($db, $excluir)
{
    // Filtrar tipo documental para una dependencia especifica
    if ($excluir) {
        $filtro = "WHERE SGD_PQR_TPD NOT IN ({$excluir})";
    } else {
        $filtro = '';
    }
    $sqlE = "SELECT\r\n    \t\tID,\r\n    \t    SGD_PQR_LABEL\r\n\t\t \tFROM\r\n\t\t \tSGD_PQR_MASTER\r\n\t\t\t{$filtro}";
    $result = $db->conn->Execute($sqlE);
    while (!$result->EOF) {
        $SGD_PQR_LABEL = $result->fields["SGD_PQR_LABEL"];
        $ID = $result->fields["ID"];
        $tipos[$ID] = ucwords(StrValido($SGD_PQR_LABEL));
        $result->MoveNext();
    }
    return $tipos;
}
Beispiel #4
0
$fechproc4 = substr($adate, 2, 4);
$fechrd = $ddate . $mdate . $fechproc4;
//Tambien se debe colocar en el archivo index.php
//tipo documental para la nueva opcion e ingreso desde el enlace alterno
$tipo_doc_especial = 2155;
//Datos registrados por el ciudadano
$tipoSolicitud = $_POST['tipoSolicitud'];
$referencia = $_POST['numerox'];
$emp = ucwords(StrValido($_POST['txtNomb']));
$apell = ucwords(StrValido($_POST['txtApell']));
$rad_asun = substr(ucfirst($_POST['txInfo']), 0, 800);
$dir = ucwords(StrValido($_POST['txtDir']));
//direcion usuario
$email = StrValido($_POST['txtCorr']);
//mail
$tel = StrValido($_POST['txtTel']);
//telefono
$dep = $_POST['parent'];
// codigo del departamento
$muni = $_POST['child'];
// municipio codigo
//cambio para una dependecia en especial que solicito un ventana
//similar a esta pero para un tipo documental especifico.
$tipo2_salida = especial2($db, $tipo_doc_especial);
$pattern = '/[^\\w:()����������=#�,.��]+/';
$asu = preg_replace($pattern, ' ', $rad_asun);
if ($tipoSolicitud == $tipo2_salida) {
    if (empty($referencia) || !is_numeric($referencia)) {
        //header("Location: ../pqr/index.php?dosxfort&error=2");
    }
}