EVOLUTION-MANAGER
Edit File: f7d4122b7fbb1ef78f758185899ca948068a98b9.php
<?php $__env->startSection('style'); ?> <link href="<?php echo e(asset('public/frontend/transparencia/wp-content/themes/jannah/assets/css/style.css')); ?>" id="tie-css-styles-css" media="all" rel="stylesheet" type="text/css"/> <style> .tooltip2 { position: relative; display: inline-block; } .tooltip2 .tooltiptext { visibility: hidden; line-height: initial; width: max-content; background-color: black; color: #fff; text-align: center; padding: 5px; border-radius: 6px; bottom: 100%; left: 50%; margin-left: -60px; position: absolute; z-index: 1; margin-bottom: 5px; } .tooltip2:hover .tooltiptext { visibility: visible; } .tooltip2 .tooltiptext::after { content: " "; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } </style> <style> .table_consulta{ border: 0px !important; width: max-content; font-size: 16px !important; } .table_consulta tr{ border: 0px !important; background-color: transparent !important; } .table_consulta td{ border: 0px !important; background-color: transparent !important; padding: 8px 8px 0px 0px !important; } @media (min-width:961px) { .form_input{ min-width: 350px; } .table_consulta input, select, button{ padding: 5px; font-size: 15px !important; } .table_consulta select{ height: 35px; } } </style> <?php $__env->stopSection(); ?> <?php $__env->startSection('contenido'); ?> <br> <div role="main"> <article class="container-wrapper post-content" id="the-post"> <header class="entry-header-outer"> <div class="entry-header"> <h1 class="post-title entry-title"> Descargar Comprobante </h1> </div> <!-- .entry-header /--> </header> <!-- .entry-header-outer /--> <div class="entry-content entry clearfix"> <div class="vc_row wpb_row vc_row-fluid"> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner"> <div class="wpb_wrapper"> <h3 class="vc_custom_heading" style="font-size: 14px;text-align: left;font-family:Actor;font-weight:400;font-style:normal"> Ingresa el numero de autorización para poder consultar los comprobantes disponibles para su descarga. </h3> </div> </div> <center> <br> <table class="table_consulta"> <tr> <td> <select id="tipo_busqueda"> <option value="cedula">Cedula/Ruc</option> <option value="ciu">CIU</option> <option value="clave">Clave Catastral</option> </select> </td> <td> <input type="number" class="form_input" placeholder="Ingrese Dato" name="valor" id="valor" class="ent"> </td> </tr> <tr> <td colspan="2"> <input type="text" placeholder="Ingrese el código" name="codigo" id="codigo" class="ent" style="width: 100%;"> <div> <label style="font-size: 12px; color: #0f8c2c;"> El código es el número de emisión o el número de pago </label> </div> </td> </tr> <tr> <td></td> <td style="text-align: left;"> <button type="submit" class="btn btn-success bnt-lg" data-toggle="tooltip" title="Buscar" style="margin-top: 7px;"> <i class="fa fa-search" aria-hidden="true" onclick="validar_documento();"> Buscar</i> </button> </td> </tr> </table> </center> <br> <div class="vc_column-inner table-responsive" id="resultado_validacion" > </div> </div> </div> </div> </article> </div> <div class="art-article" style="padding-top: 10px;padding-bottom: 150px;"> <center> <div class=""> <div class="col-md-12"> <!-- Mega menu --> <!-- / Mega menu --> </div> </div> </center> </div> <br> <br> <br> <br> <br> <br> <br> <?php $__env->stopSection(); ?> <?php $__env->startSection('script'); ?> <script type="text/javascript"> function validar_documento(){ var valor=$('#valor').val(); var tipo_busqueda=$('#tipo_busqueda').val(); var codigo=$('#codigo').val(); if(valor==null||valor==''||codigo==null||codigo==''){ return 1; } carga_ajax('Espere, estamos consultando los datos ...'); $.ajax({ type: "POST", url: "<?php echo e(url('consulta_descarga_documento')); ?>", data: { valor,codigo,tipo_busqueda,"_token":"<?php echo e(csrf_token()); ?>" } }).done(function(tabla) { desaparecer_carga_ajax(); $('#resultado_validacion').html(tabla); }).fail(function(jqXHR, textStatus, errorThrown) { desaparecer_carga_ajax(); }) .always(function() { desaparecer_carga_ajax(); }); } $(".ent").on("keyup", function (e) { if (e.keyCode === 13) { validar_documento(); } }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>