����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.117.85.73 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/action/ |
Upload File : |
<div class="box-body table-responsive no-padding" style="max-width:1124px;"> <table id="table_search" class="table table-bordered table-hover "> <thead> <tr class="tableheader"> <th style="width:40px">#</th> <th style="width:60px">Nombre</th> <th style="width:250px">Precios</th> <th style="width:300px">Precio de venta</th> <th style="width:120px">Unidad</th> <th style="width:60px">Ubicacion</th> <th style="width:160px">Operaciones</th> <th></th> </tr> </thead> <tbody> <?php $Iden = ($_POST['ID']); if(isset($Iden)){ $products = ProductData::getAllByName2($Iden); if(count($products) < 10){ ?> <?php foreach($products as $product): $prods = ProductData::getAllByName($product->item_name); foreach($prods as $prod){ $id_prod =$prod->id; ?> <tr> <td><?php echo $product->barcode; ?></td> <td><?php echo $product->item_name; ?></td> <td style="width:30px;"><a href="index.php?view=productbyprice&id=<?php echo $prod->id;?>" class="btn btn-default btn-xs"><i class="fa fa-th-list"></i> Precios</a> </td> <td>$ <?php echo number_format($product->price,2,'.',','); ?></td> <td><?php echo $product->unit; ?></td> <td><?php echo $product->presentation; ?></td> <td style="width:90px;"> <a target="_blank" href="index.php?action=productqr&id=<?php echo $id_prod; ?>" class="btn btn-xs btn-default"><i class="fa fa-qrcode"></i></a> <a href="index.php?view=editproduct&id=<?php echo $id_prod; ?>" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil"></i></a> <a href="index.php?view=delproduct&id=<?php echo $id_prod; ?>" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></a> <a href="index.php?view=PriceCam&id=<?php echo $id_prod; ?>" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil"></i>cambio $</a> <a href="http://localhost/barcodeOK/test_1D.php/?barcode=<?php echo $product->barcode; ?>" class="btn btn-xs btn-info"><i class="glyphicon glyphicon-barcode"></i>CodigoBr</a> </td> </tr> <?php } endforeach;?> <?php } else { echo "buscando..."; } } else { echo "<script>alert('Estas metiendo un valor no numérico');</script>"; } ?> </tbody> </table> </div>