MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: /home/asjudine/www/acobranzas/informe_diagnostico_jur6.php
<?php
global $dbi;
require_once("../Conectarse.php");
error_reporting(E_ALL ^ E_NOTICE);

$dia = date("d");
$mes = date("m"); 
$ano = date("Y");

$misql = mysql_query("select codigo from Usuarios where Cedula = $cc");
if($misql){list($codigo_funcionario) = mysql_fetch_row($misql);}



$control = mysql_query('SELECT cedula,numero_proceso,tipo_proceso,numero_contrato,tipo_contrato,codigo_sucursal, clase_negocio,despacho_judicial,ciudad_despacho,calidad_juridica_afiliado,tipo_orden,numero_carpeta, ultimo_folio, codigo_abogado,fecha_actuacion,actividad_proceso,estado_proceso FROM procesos WHERE cedula = "'.$_GET["id"].'"  and numero_proceso = "'.$_GET["proceso"].'"  ');

if (!$control) {
    die('Invalid query: ' . mysql_error());
} 
if ((mysql_num_rows($control)!=0)) 
{	 
    list($cedula, $numero_proceso, $tipo_proceso, $numero_contrato, $tipo_contrato, $codigo_sucursal, $clase_negocio, $despacho_judicial, $ciudad_despacho, $calidad_juridica_afiliado, $tipo_orden, $numero_carpeta, $ultimo_folio, $codigo_abogado, $fecha_actuacion, $actividad_proceso, $estado_proceso) = mysql_fetch_row($control);
	 
    if($actividad_proceso == 'A'){
	   $actividad_proceso = 'ACTIVO';
    }
    else $actividad_proceso = 'INACTIVO';
		 
    if($estado_proceso == 'V')
	{
        $estado_proceso = 'VIGENTE';
    }
	else $estado_proceso = 'HISTORICO';							   
    // $sucursal = mysql_query("select nombre from sucursal where codigo =  $codigo_sucursal", $dbi);
    $sucursal = mysql_query('SELECT nombre FROM sucursal WHERE codigo = "' ."$codigo_sucursal". '" ');
	if (!$sucursal) {
	   die('Invalid query: ' . mysql_error());
    }
    if($sucursal){list($ns) = mysql_fetch_row($sucursal);}
    // $abogado = mysql_query("select nombre_completo from asjudinet_abogados where codigo_abogado =  $codigo_abogado", $dbi);
	$abogado = mysql_query('SELECT  nombre_completo FROM asjudinet_abogados WHERE codigo_abogado = "' ."$codigo_abogado". '" ');
	if (!$abogado) {
	   die('Invalid query: ' . mysql_error());
    }
    if($abogado){list($nombre_abogado) = mysql_fetch_row($abogado);}
    $tres=substr($fecha_actuacion, 0, 4);
    $dos=substr($fecha_actuacion, 5, 2);
    $uno=substr($fecha_actuacion, 8, 2);
    $fecha_actuacion = ($uno."-".$dos."-".$tres);	 
    
    //$sqlnom = "select nombre from asjudinet_cartera where cedula = $cedula";
    // $control = mysql_query($sqlnom, $dbi) or die(mysql_error());
	$control = mysql_query('SELECT nombre FROM asjudinet_cartera WHERE cedula = "'.$cedula.'" ');
	if (!$control) {
	   die('Invalid query: ' . mysql_error());
    } 	 
    list($nombre_completo) = mysql_fetch_row($control);
	 
	// $sqlnom2 = "select fecha,total_folios, avoca_proceso, problematica_juridica, acciones_juridicas, actuaciones_anteriores, enfoque_actuacion, actuacion_perjuicio, estado_proceso from informe_diagnostico where numero_proceso = '$proceso' and cedula = '$id' ";
    // $control2 = mysql_query($sqlnom2, $dbi) or die(mysql_error());	 
	
    $control2 = mysql_query('SELECT fecha,total_folios,avoca_proceso, problematica_juridica, acciones_juridicas, actuaciones_anteriores, enfoque_actuacion, actuacion_perjuicio, estado_proceso FROM informe_diagnostico WHERE cedula = "'.$_GET["id"].'"  and numero_proceso = "'.$_GET["proceso"].'" ');
    if (!$control2) {
        die('Invalid query: ' . mysql_error());
    }
    list($fechai, $total_foliosi, $avocai,$problematica_juri, $acciones_juri, $act_anti, $enfoquei, $act_peri, $estproi) = mysql_fetch_row($control2);
}

if(isset($_POST["actualiza"]))
{

	$control = mysql_query('SELECT cedula, numero_proceso, tipo_proceso, numero_contrato, tipo_contrato, codigo_sucursal, clase_negocio, despacho_judicial, ciudad_despacho, calidad_juridica_afiliado, tipo_orden, numero_carpeta,  ultimo_folio, codigo_abogado, fecha_actuacion, actividad_proceso, estado_proceso FROM procesos WHERE cedula = "' . $_GET["id"]  . '"  and numero_proceso = "' . $_GET["proceso"]  . '"  '); 
    if ((mysql_num_rows($control)!=0)) 
    {	 
        list($cedula, $numero_proceso, $tipo_proceso, $numero_contrato, $tipo_contrato, $codigo_sucursal, $clase_negocio, $despacho_judicial, $ciudad_despacho, $calidad_juridica_afiliado, $tipo_orden, $numero_carpeta, $ultimo_folio, $codigo_abogado, $fecha_actuacion, $actividad_proceso, $estado_proceso) = mysql_fetch_row($control);
				 
        if($actividad_proceso == 'A')
		{
            $actividad_proceso = 'ACTIVO';
		}
        else $actividad_proceso = 'INACTIVO';
        if($estado_proceso == 'V')
		{
            $estado_proceso = 'VIGENTE';
        }
					 
		else $estado_proceso = 'HISTORICO';							   
        // $sucursal = mysql_query("select nombre from sucursal where codigo =  $codigo_sucursal", $dbi);
        $sucursal = mysql_query('SELECT nombre FROM sucursal WHERE codigo = "'.$_POST[codigo_sucursal].'" ');
		if (!$sucursal) {
            die('Invalid query: ' . mysql_error());
        }
        if($sucursal)
		{
            list($ns) = mysql_fetch_row($sucursal);
        }
        // $abogado = mysql_query("select nombre_completo from abogados where codigo_abogado =  $codigo_abogado", $dbi);
        $abogado = mysql_query('SELECT nombre_completo FROM asjudinet_abogados WHERE codigo_abogado = "'.$_POST[codigo_abogado].'" ');
		
        if (!$abogado) {
            die('Invalid query: ' . mysql_error());
        }
        if($abogado){list($nombre_abogado) = mysql_fetch_row($abogado);}
        $tres=substr($fecha_actuacion, 0, 4);
        $dos=substr($fecha_actuacion, 5, 2);
        $uno=substr($fecha_actuacion, 8, 2);
        $fecha_actuacion = ($uno."-".$dos."-".$tres);	 
    }
}

if(isset($_POST["grabar"]))
{
    $modi = mysql_query("UPDATE informe_diagnostico set estado = '1' WHERE cedula = '".$_GET["id"]. "' and numero_proceso = '".$_GET["proceso"]."'  ");

    echo "<script>alert('la Revision del diagnostico fue exitosa');</script>";
}
?>


<html>
<head>
<title>Informe De Diagnostico</title>
    <meta http-equiv="X-UA-Compatible" content="IE=8; IE=9; IE=edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style>

*{margin: 0;padding: 0;}
body{background-color:#EAEAEA;font-family:Geneva, Arial, Helvetica, sans-serif;}
header {background-color: #B7271F; text-align: center;}
.titulo{width: 100%;text-align: center;background-color: #dbd8c9;color: #b20606;padding: 6px 0;font-size: 18px;}
table{margin: 0 auto;border: 8px solid #bebebe;}

/*Dif*/
.fecha{background-color: #d6e08b; padding: 2px;color: #000;font-size: 13px;}
td{border: 1px solid #a0a0a0;}
.td{background-color: #e5e5e5; padding: 1px;color: #00135F;font-size: 13px;font-weight: 500; text-align: center;}
.boton1{width:150px;background-color: #ffffff;color: #000;padding: 2px;border:2px solid #580000;border-radius:10px;}
.boton1:hover{background-color: #6f0000;color: #fff;cursor: pointer;}
input[type=text]{border-radius: 5px; padding: 1px;background-color: #FFFEF2;}
    
.marquee{background-color: #ffffff; color: #912828; font-size: 15px;}
.tdjustify{background-color: #e5e5e5; padding: 1px;color: #00135F;font-size: 13px;font-weight: 600; text-align: justify; padding: 0 8px;}
    
</style>

<script languaje="JavaScript">
function Mostrar_Fecha()
{
    var mydate=new Date()
    var year=mydate.getYear()
    if (year < 1000)
        year+=1900
        var day=mydate.getDay()
        var month=mydate.getMonth()
        var daym=mydate.getDate()
        if (daym<10)
            daym="0"+daym
            var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado")
            var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
            document.write("<b><font face='Arial, Helvetica, sans-serif'>"+dayarray[day]+" "+daym+" de "+montharray[month]+" de "+year+"</font></b>")
}					
</script>

<script Language="JavaScript">

function validar()
{
    var uf, pf, sf=0;
	uf = formulario.ultimo_folio.value;
	pf = formulario.folio1.value;
	sf = parseInt(formulario.ultimo_folio.value)+1;
    
	if(!(pf == uf || pf == sf))
	{	 
        alert('El folio ingresado debe ser igual o inmediatamente posterior al último');
        formulario.folio1.focus();
        return (false);	
	}

    if (formulario.folio2.value == "")
    {
        alert("Falta ingresar el Folio2");
        formulario.folio2.focus();
        return (false);
    }   
    
	if(formulario.folio2.value < pf)
	{	 
        alert('El folio2 no debe ser menor que el folio1');
        formulario.folio2.focus();
        return (false);
	}	
    
    if (formulario.actuacion.value == "")
    {
        alert("Falta ingresar la actuación");
        formulario.actuacion.focus();
        return (false);
    }

    if (formulario.codigo_funcionario.value == "")
    {
        alert("Falta seleccionar el nombre del funcionario");
        formulario.codigo_funcionario.focus();
        return (false);
    }

    return (true);
}
</script>

<SCRIPT LANGUAGE='JavaScript'>
var default1 = "VENTANA PARA EL INGRESO DE REVISTAS JURIDICAS"; // only shown once at page load
var text1 = "El primer encabezado muestra en detalle los datos del proceso seleccionado";
var text2 = "la segunda parte muestra el formulario para el ingreso de revistas";
var text3 = "No se le olvide tener en cuenta el número del folio que se entrega en el juzgado";
var changeRate = 3000; // 1000 = 1 second
var messageNumber = 0;

function changeStatus()
{
  if (messageNumber == 0) {
     window.status=default1;
     document.title=default1;
  }
  else if (messageNumber == 1) {
     window.status=text1;
  }
  else if (messageNumber == 2) {
     window.status=text2;
  }
  else if (messageNumber == 3) {
     window.status=text3;
     messageNumber = 0;
  }
  messageNumber++;
  setTimeout("changeStatus();",changeRate);
}
changeStatus(); // leave here to run right away
// -->
</SCRIPT>

</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="document.formulario.folio1.focus()">

<header>
    <img src="../ELEMENTS/bannerInterasjudinet.png" alt="" width=" 700" height="70">
</header>
<h3 class="titulo">INFORME DIAGNOSTICO</h3>

<form name="consulta" action="" method="post">
<table width="670" border="0" align="center" cellpadding="2" cellspacing="2">
  
<tr>
    <td class="fecha" align='center'>
        <script languaje="JavaScript">Mostrar_Fecha()</script>
    </td>
</tr>
<tr>
    <td class="td"><fieldset>
    <legend>Datos del proceso:</legend>
    <table width="662" border="0" cellspacing="1" cellpadding="0">
    <tr>
        <td class='td'>C&eacute;dula (Titular-Beneficiario):</td>
        <td colspan="2"><input name="cedula" type="text" id="cedula" value="<?php echo $cedula; ?>" readonly=""></td>
        <td class='td'>Proceso:</td>
        <td><input name="numero_proceso" type="text" id="numero_proceso" value="<?php echo $numero_proceso; ?>" size="13" maxlength="7" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Nombre completo: </td>
        <td colspan="4"><input name="nombre" type="text" id="nombre" value="<?php echo $nombre_completo; ?>" size="50" maxlength="50" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Tipo de proceso:</td>
        <td colspan="2"><input name="tipo_proceso" type="text" id="tipo_proceso" value="<?php echo $tipo_proceso; ?>" size="20" maxlength="20" readonly=""></td>
        <td class='td'>Contrato:</td>
        <td><input name="numero_contrato" type="text" id="numero_contrato" value="<?php echo $numero_contrato; ?>" size="13" maxlength="8" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Sucursal:</td>
        <td colspan="2"><input name="codigo_sucursal" type="text" id="tipo_contrato" value="<?php echo $codigo_sucursal; ?>" size="2" maxlength="2" readonly="">
         -         
        <input name="sucursal" type="text" id="sucursal" value="<?php echo $ns; ?>" size="23" maxlength="25" readonly=""></td>
        <td class='td'>Tipo:</td>
        <td><input name="tipo_contrato" type="text" id="tipo_contrato" value="<?php echo $tipo_contrato; ?>" size="13" maxlength="8" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Clase de negocio:</td>
        <td colspan="4"><input name="clase_negocio" type="text" id="clase_negocio" value="<?php echo $clase_negocio; ?>" size="60" maxlength="60" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Despacho judicial:</td>
        <td colspan="4"><input name="despacho_judicial" type="text" id="despacho_judicial" value="<?php echo $despacho_judicial; ?>" size="60" maxlength="60" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Calidad jur&iacute;dica afiliado:</td>
        <td colspan="2"><input name="calidad_juridica" type="text" id="calidad_juridica" value="<?php echo $calidad_juridica_afiliado; ?>" size="25" maxlength="50" readonly=""></td>
        
        <td class='td'>Tipo de orden:</td>
        <td><input name="tipo_orden" type="text" id="tipo_orden" value="<?php echo $tipo_orden; ?>" size="15" maxlength="20" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>N&uacute;mero carpeta:</td>
        <td><input name="numero_carpeta" type="text" id="numero_carpeta" value="<?php echo $numero_carpeta; ?>" size="6" maxlength="6" readonly=""></td>
        <td class='td'>Ultimo folio:</td>
        <td colspan="2"><input name="ultimo_folio" type="text" id="ultimo_folio" value="<?php echo $ultimo_folio; ?>" size="3" maxlength="5" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Abogado:</td>
        <td colspan="4"><input name="nombre_abogado" type="text" id="nombre_abogado" value="<?php echo $nombre_abogado; ?>" size="50" maxlength="50" readonly="">
        <input name="codigo_abogado" type="text" id="codigo_abogado" value="<?php echo $codigo_abogado; ?>" size="3" maxlength="3" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Fecha &Uacute;ltima actuaci&oacute;n:</td>
        <td><input name="fecha_actuacion" type="text" id="fecha_actuacion" value="<?php echo $fecha_actuacion; ?>" size="10" maxlength="10" readonly=""></td>
        <td class='td'>Actividad del proceso:</td>
        <td colspan="2"><input name="actividad_proceso" type="text" id="actividad_proceso" value="<?php echo $actividad_proceso; ?>" size="20" maxlength="20" readonly=""></td>
    </tr>
    <tr>
        <td class='td'>Estado del proceso:</td>
        <td colspan="4"><input name="estado_proceso" type="text" id="estado_proceso" value="<?php echo $estado_proceso; ?>" size="20" maxlength="20" readonly="">
        </td>
    </tr>
    <tr>
        <td colspan="5">
           <table width="662" border="0" cellspacing="0" cellpadding="0">
             <tr>
               <td><MARQUEE class=marquee width = 95% scrolldelay = 100>Una vez que haya grabado el registro, haga click sobre el bot&oacute;n **Actualizar** para visualizar el &uacute;ltimo folio</MARQUEE> </td>
               <td width="81"><input name="actualiza" type="submit" id="actualiza" class= "boton1" value="Actualizar"></td>
             </tr>
           </table>
        </td>
    </tr>
</table> 
</fieldset></td>
</tr>
</table>
</form>
<br>
<!--/segundo form-->
<form name="formulario" action="<?php echo $editFormAction; ?>" method="post" onSubmit="return validar(this)">
<input name="ultimo_folio" type="hidden" value="<?php echo $ultimo_folio; ?>">
<input name="cedula" type="hidden" value="<?php echo $cedula; ?>">
<input name="numero_proceso" type="hidden" value="<?php echo $numero_proceso; ?>">
<input type="hidden" name="MM_insert" value="formulario">
<table width="600" height="222" border="1" align="center" cellpadding="2" cellspacing="0">
<tr>
    <td colspan="9" class="titulo">INGRESE LOS DATOS DEL INFORME DE DIAGNOSTICO</td>
</tr>
<tr>
    <td width="7%" class='td'>Fecha:</td>
    <td width="14%" class='td'>
        <input name="feci" type="text" id="feci" value="<?php echo $fechai; ?>" size="10" maxlength="10" readonly="">
    </td>
    <td colspan="2" class='td'>Total folios Expediente:</td>
    <td width="6%" class='td'><input name="tot_foli" type="text" id="tot_foli" value="<?php echo $total_foliosi; ?>" size="3" maxlength="3"></td>
    <td width="19%" class='td'>Avoca conocimiento proceso por:</td>
    <td colspan="3"  class='td'>
        <input name="avi" type="text" id="avi" value="<?php echo $avocai; ?>" size="20" maxlength="20" readonly="">
    </td>
</tr>
<tr>
    <td colspan="2" class='td'>Problematica juridica:</td>
    <td colspan="7">
        <textarea name="problem_juri" id="problem_juri" cols="70" rows="4"><?php echo $problematica_juri; ?></textarea>
    </td>
</tr>
<tr>
    <td colspan="2" class='td'>Acciones juridicas que proyecta a seguir:</td>
    <td colspan="7">
        <textarea name="acci_juri" id="acci_juri" cols="70" rows="4"><?php echo $acciones_juri; ?></textarea>
    </td>
</tr>
<tr>
    <td colspan="2" class='td'>Existen actuaciones de abogados anteriores:</td>
    <td width="12%" class='td'><input name="actni" type="text" id="actni" value="<?php echo $act_anti; ?>" size="3" maxlength="3"></td>
    <td colspan="5" class='tdjustify'>En caso afirmativo, estas actuaciones considera que  estuvieron enfocadas a la defensa y su procedimiento esta de acuerdo a la  b&uacute;squeda de un resultado positivo : 
    </td>
    <td width="19%" class='td'><input name="enfi" type="text" id="enfi" value="<?php echo $enfoquei; ?>" size="7" maxlength="7"></td>
</tr>
<tr>
    <td colspan="3" class='td'>En caso negativo explique por qu&eacute; considera usted  que dichas actuaciones perjudicaron la defensa o la busqueda de un resultado  positivo :</td>
    <td colspan="6"><textarea name="actpi" id="actpi" cols="58" rows="4"><?php echo $act_peri; ?></textarea></td>
</tr>
<tr>
    <td colspan="2" class='td'>Estado actual del proceso:</td>
    <td colspan="7"><textarea name="esti" id="esti" cols="70" rows="4"><?php echo $estproi; ?></textarea></td>
</tr>
<tr>
    <td colspan="9" class='td'><div align="right"></div></td>
     </tr>
   </table>

</form>

<br>
</body>
</html>


<?php
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])){$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "formulario"))
{
//GUARDAR INFO	
 mysql_free_result($Recordset1);

}
?>