����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.222.188.218 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/t/sae/appsae/core/app/view/ |
Upload File : |
<?php $clients = PersonData::getClients(); $users = UserData::getAll2(); ?> <html lang = "es"> <head> <title>Devoluciones</title> </head> <body> <section class="content"> <div class="row"> <div class="col-md-12"> <nav class = "navbar navbar-inverse"> <div class = "container-fluid"> <a href = "#" class = "navbar-brand">Reportes de Productos Eliminados</a> </div> </nav> </content> <div class = "row-fluid" class="form-control"> <div class = "col-md-3"></div> <div class="panel panel-default"> <div class="panel-body"> <hr style = "border-top:1px dotted #000;"/> <div class = "form-inline"> <label>Desde:</label> <input type="date" name="sd" value="<?php if(isset($_GET["sd"])){ echo $_GET["sd"]; }?>" class="form-control" id = "date1"> <label>Hasta:</label> <input type="date" name="ed" value="<?php if(isset($_GET["ed"])){ echo $_GET["ed"]; }?>" class="form-control" id = "date2"> <label>Ven:</label> <input type="text" class="form-control" placeholder = "Buscar vendedor" id="vendedor"></input> <label>Seleccionar:</label> <select name="id_seller" class="form-control"> <option value="">-- VENDEDOR --</option> <?php foreach($users as $p):?> <option value="<?php echo $p->id_user;?>"><?php echo $p->username;?></option> <?php endforeach; ?> </select> <a href="#" class="btn btn-xs btn-primary"><button type = "button" class = "btn btn-primary" id = "btn_searchD" onclick="loaddel();"><span class = "fa fa-file-text"></span></button></a> <a href="index.php?view=delproducts" class="btn btn-xs btn-success"><button type = "button" id = "reset" class = "btn btn-success"><span class = "glyphicon glyphicon-refresh"><span></button></a> </div> <br/> <br/> Productos Eliminados <div class = "table-responsive"> <table class = "table table-bordered"> <thead class="alert-danger"> <tr> <th style = "width:25%;">Folio</th> <th style = "width:30%;">Descripcion</th> <th>Total</th> <th>Vendedor</th> <th style = "width:20%;">Fecha</th> </tr> </thead> <tbody id = "load_data"> </tbody> </table> </div> </div> </div> </body> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <script src = "js/ajaxVendedor.js"></script> </html>