����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.128.190.205 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 : |
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"> <title>Inventario</title> <link rel="shortcut icon" type="image/png" href="/media/images/favicon.png"> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.datatables.net/rss.xml"> <link rel="stylesheet" type="text/css" href="/media/css/site-examples.css?_=09336a954ebb1a7edfe2e2aaf653ebbd1"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.12.1/css/dataTables.bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/fixedheader/3.2.4/css/fixedHeader.bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.3.0/css/responsive.bootstrap.min.css"> <script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.12.1/js/dataTables.bootstrap.min.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/fixedheader/3.2.4/js/dataTables.fixedHeader.min.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/responsive/2.3.0/js/dataTables.responsive.min.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/responsive/2.3.0/js/responsive.bootstrap.min.js"></script> <script type="text/javascript" class="init"> $(document).ready(function() { var table = $('#example').DataTable( { responsive: true } ); new $.fn.dataTable.FixedHeader( table ); } ); </script> </head> <body class="wide comments example dt-example-bootstrap"> <div class="fw-container"> <div class="fw-body"> <div class="content"> <h1><i class='glyphicon glyphicon-shopping-cart'></i>Inventario General </h1> <div class="info"> <p>Verifica la existencia entre los distintos almacenes </p> </div> <div class="demo-html"> <table id="example" class="table table-hover table-bordered dt-responsive nowrap" style="width:100%"> <thead> <tr> <th>Codigo de Barras</th> <th>Nombre</th> <th>Existencia A1</th> <th>Existencia A2</th> <th>Existencia A3</th> <th>Existencia A4</th> <th>Precio Costo</th> <th>Utilidad</th> </tr> </thead> <tbody> <?php $utilidad=0; $inventario= ProductData::getAll(); foreach($inventario as $prod){ if($prod->stock>0){ ?> <tr> <td><?php echo $prod->barcode; ?></td> <td><?php echo $prod->item_name; ?></td> <td><?php echo $prod->stock; ?></td> <td><?php echo $prod->stock2; ?></td> <td><?php echo $prod->stock3; ?></td> <td><?php echo $prod->stock4; ?></td> <td><?php $prod1 = ProductData::getBycode($prod->barcode); echo number_format($prod1->price_in,2); ?></td> <td><?php echo $utilidad = $prod->price - $prod1->price_in; ?></td> </tr> <?php }} ?> </tbody> </table> </div> </div> </div> </div> </body> </html>