����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.17.164.48 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/pos11/core/app/view/ |
Upload File : |
<section class="content-header"> <h1>Reporte Ventas por producto del dia <?php echo $_GET["sd"]; ?> al dia <?php echo $_GET["ed"]; ?></h1> <ol class="breadcrumb"> <li><a href="./?view=popularproductsreport&ed=<?php echo $_GET["ed"]; ?>&sd=<?php echo $_GET["sd"];?>"><i class="fa fa-dashboard"></i> Reportes Productos Populares</a></li> <li class="active">Ventas por producto</li> </ol> </section> <section class="content"> <div class="box box-primary"> <div class="box-header"> <h3 class="box-title">Debe seleccionar un folio para visualizar su reporte de la venta.</h3> </div><!-- /.box-header --> <div class="box-body"> <div class="row"> <div class="col-md-12"> <?php $page = 1; if(isset($_GET["ed"])){ } $limit=10; if(isset($_GET["ed"]) && $_GET["ed"]!="" && isset($_GET["ed"]) && $_GET["sd"]!=""){ } $products = OperationData::getPPByDateOfficial3($_GET["sd"],$_GET["ed"],$_GET["id"] ); if(count($products)>0){ ?> <div class="clearfix"></div> <br><table class="table table-bordered table-hover"> <thead> <th>Credito</th> <th>Codigo</th> <th>Cantidad</th> <th>Precio de Venta</th> <th>Fecha</th> </thead> <?php foreach($products as $product): $sell = SellData::getByc($product->sale_id); if(isset($sell->id)){ ?> <tr> <td><?php if($sell->p_id == 4){ echo "Credito"; }else{echo "Contado";} ?></td> <td> <a href="index.php?view=onesell1&id=<?php echo $sell->id; ?>&sale_id=<?php echo $product->sale_id;?>" class="btn btn-default"><i class="glyphicon glyphicon-eye-open"></i></a> <?php echo $product->sale_id; ?> </td> <td><?php echo $product->qty; ?></td> <td><?php echo $product->price; ?></td> <td> <?php echo $product->created_at; ?> </td> </tr> <?php } endforeach;?> </table> <div class="btn-group pull-right"> </div> <div class="clearfix"></div> <?php }else{ ?> <div class="jumbotron"> <h2>No hay productos</h2> <p>No hay productos vendidos en este perido.</p> </div> <?php } ?> </div> </div> </div> </div> </section>