����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.42 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 : /proc/self/root/var/www/html/t/sae/appsae/core/app/view/ |
Upload File : |
<?php $id="SI"; //verificamos las ventas a credito $users = PersonData::getClientsWithCredit2($id); $sells = SellData::getCredits(); //print_r($users); if(count($sells)>0){ // si hay usuarios ?> <style> .loading { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url('storage/img/Loading_2.gif') 50% 50% no-repeat rgb(249,249,249); opacity: .8; } </style> <section class="content"> <div class="loading"></div> <div class="row"> <div class="col-md-12"> <nav class = "navbar navbar-inverse"> <div class = "container-fluid"> <a href = "#" class = "navbar-brand">Credito de Cliente Con Saldo Pendiente </a> </div> </nav> <a href="./report/credit-word.php" class="btn btn-default"> <i class="fa fa-file-text"></i> Descargar Word (.docx)</a> <a href="./report/credit-excel.php" class="btn btn-default"> <i class="fa fa-file-text"></i> Descargar Excel (.xlsx)</a> <div class="box box-primary"> <div class="box-header"> <h3 class="box-title">Detalle de creditos</h3></div> <div class="box-body"> <table class="table table-bordered table-hover table-responsive datatable"> <thead> <th style="width:20px;">Contrato</th> <th style="width:100px;">Cliente</th> <th style="width:10px;">Total Venta</th> <th style="width:10px;">Saldo</th> <th style="width:200px;">Fecha</th> <th style="width:100px;"></th> </thead> <tbody> <tr> <?php foreach($sells as $sell): $abonos = PaymentData::sumByClientId($sell->person_id)->total; $total = $sell->total + $sell->enganche;; ?> <td><?php echo $sell->person_id;?></td> <td><?php echo $sell->getPerson()->name;?></td> <td><?php echo $total;?></td> <td><?php echo $abonos;?></td> <td><?php echo $sell->created_at;?></td> <td> <a href="index.php?view=makepayment&id=<?php echo $sell->getPerson()->id_cust;?>" class="btn btn-default btn-xs">Realizar Pago</a> <a href="index.php?view=paymenthistory&id=<?php echo $sell->getPerson()->id_cust;?>" class="btn btn-default btn-xs">Historial</a> </td> <?php endforeach;?> </tr> </tbody> </table> </div> </div> </div> </div> </section> <br> <br> <?php } ?> <script> $(window).on('load', function () { setTimeout(function () { $(".loading").css({visibility:"hidden",opacity:"0"}) }, 500); }); </script>