Centro de consultas de cotizaciones
INGRESE CÓDIGO:
.code{
width:40%;
border:1px solid #222;
font-size:20px;
}
.buscarcode{
background:#031f59;
color:#fff;
font-size:19px;
}
.table tr th{
color:#222;
}
.entry-content table:not(.variations) {
border: 1px solid #eee;
margin: 0 0 15px;
text-align: left;
width: 39%;
}
.table tr th{
border:1px solid #222;
}
.table{
width:50% !important;
}
DATOS | DETALLE |
---|
function buscar_datos_tabla_Filtro(){
var code=$("#code").val();
var parametros =
{
"buscar": "1",
"code" : code
};
$.ajax(
{
data: parametros,
dataType: 'json',
url: 'https://inducom-ec.com/twilio/cotizacion.php',
type: 'post',
beforeSend: function()
{},
error: function()
{},
complete: function()
{},
success: function (valores)
{
if(valores===null){
alert("No existen registros");
}else{
for(i=0;i<valores.length;i++){
$("#tablacotizacion").append("RUC: "+valores[i].rucCliente+" NUMERO COTIZACION: "+valores[i].numeroCotizacion+" TU DESCUENTO: "+valores[i].descuentoActual+" ITEM: "+valores[i].item+" MARCA: "+valores[i].marca+" COTIZACION: Descargar MANUAL: Descargar ");
}
}
$("#code").val("");
}
})
}