����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.119 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/mueblesOLDMAYO/applicationOLD/debtcollector/ |
Upload File : |
<?php date_default_timezone_set("America/Mexico_City"); setlocale(LC_ALL,"es_ES"); require_once ("../model/dbconn.php"); require_once ("../model/pos.php"); if($_GET){ $fechahoy = date("d-m-Y"); $semana = date("W"); $id_collector = $_GET['id_collector']; //BUSCAMOS LA TABLA PENDING RUTE LOS FOLIOS QUE ESTAN ASIGNADOS A ESTE COBRADOR //se filtra por dia de cobro, periodicidad $pos = new pos(); $pending = $pos->getPendingRouteByColector($id_collector); $pending_route = $pending[2]; foreach($pending_route as $key=>$route) { $pending_route[$key]['mercancia']=$pos->getSaleDetailIdSale($route['sale_id'])[1]; } } ?> <!DOCTYPE HTML> <html> <head> <title>Detalle Cliente</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <link rel="stylesheet" href="assets/css/main.css" /> <noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript> </head> <body class="is-preload"> <!-- Header --> <header id="header"> <div class="inner"> <!-- Nav --> <nav> <ul> <li><a href="#menu">Menu</a></li> </ul> </nav> </div> </header> <!-- Menu --> <nav id="menu"> <h2>Menu</h2> <ul> <li><a href="generic.php">No. Sem: <b><u><?php echo $semana;?></u></b> Fecha: <b><u><?php echo $fechahoy;?></u></b> </a></li> <li><a href="../index.php?id_collector=<?php echo $id_collector;?>">Inicio</a></li> <li><a href="generic.php">Enviar Cobranza</a></li> </ul> </nav> <!-- Wrapper --> <!-- Main --> <div id="main"> <div class="inner"> <span class="title">No. Contrato: <b><u><?php echo $contract; ?></u></b></span> <h1> </u><b><?php echo $nombre;?></b></u></h1> <section> <form method="post" action="#"> <div class="row"> <div class="col-md-3"> <div class="box box-primary"> <table class="table table-bordered"> <th align="right"><b>Direccion:</b></th> <td colspan="4" ><b><?php echo $dir;?></b></td> <tr> <th ><b> Mercancia: </b></th> <td colspan="4" align="left" id="created_at"><b>REMARA MATRIMONAL S121</b></td> </tr> <tr> <td colspan="3"><b> Fecha venta:</b></td> <td colspan="2" align="center" id="date_sale"><?php echo $fechahoy;?></td> </tr> <tr> <td colspan="3"><b> Monto de Venta: </b></td> <td colspan="2" align="right" id="date_sale"><b>$ <?php echo number_format($total,2);?></base></td> </tr> <tr> <td colspan="3"><b> Saldo: </b></td> <td colspan="2" align="right" id="date_sale"><b>$ <?php echo number_format($total,2);?></b></td> </tr> <tr> <td colspan="3"><b> Abono: </b></td> <td colspan="2" align="right" id="date_sale"><b><u>$ <?php echo number_format($pay_min,2);?></u></b></td> </tr> </table> </div> </div> </div> <ul class="actions"> <li><input type="submit" value="Cobrar Pago" class="primary" /></li> <li><input type="submit" value="Imprimir" /></li> <li><input type="submit" value="Siguiente" class="primary" /></li> </ul> <div class="fields"> </div> </form> </section> </div> </div> <!-- Footer --> <footer id="footer"> <div class="inner"> <ul class="copyright"> <li>© Untitled. All rights reserved</li><li>Design: <a href="https://yusasoft1.com/">Sistemas Yusa</a></li> </ul> </div> </footer> <!-- Scripts --> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/browser.min.js"></script> <script src="assets/js/breakpoints.min.js"></script> <script src="assets/js/util.js"></script> <script src="assets/js/main.js"></script> </body> </html>