����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/view/ |
Upload File : |
<section class="content"> <div class="btn-group pull-right"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-download"></i> Descargar <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="report/onere-word.php?id=<?php echo $_GET["id"];?>">Word 2007 (.docx)</a></li> </ul> </div> <h1>ORDEN DE COMPRA PENDIENTES. <?php echo $_GET["id"];?></h1> <?php if(isset($_GET["id"]) && $_GET["id"]!=""):?> <?php $sell = ReData::getById($_GET["id"]); $operations = OperationData2::getAllProductsByReId($_GET["id"]); if(isset($operations[0]->product_id)){ echo "<h1>Pendiente-entrada</h1>"; //print_r($operations[0]->product_id); }else{ //verificamos si es orden de compra, buscando un if(isset($operations[0]->barcode)){ echo "<h1>OC-Entrada pendiente</h1>"; $operations = OperationData2::getAllProductsByAjId_OC2($_GET["id"]); //print_r($operations); }else{ echo "<h1>Ajuste-Entrada</h1>"; $operations = OperationData2::getAllProductsByAjId_OC2($_GET["id"]); //print_r($operations); } } $total = 0; ?> <?php /* if(isset($_COOKIE["selled"])){ foreach ($operations as $operation) { // print_r($operation); $qx = OperationData::getQYesF($operation->product_id); // print "qx=$qx"; $p = $operation->getProduct(); if($qx==0){ echo "<p class='alert alert-danger'>El producto <b style='text-transform:uppercase;'> $p->name</b> no tiene existencias en inventario.</p>"; }else if($qx<=$p->inventary_min/2){ echo "<p class='alert alert-danger'>El producto <b style='text-transform:uppercase;'> $p->name</b> tiene muy pocas existencias en inventario.</p>"; }else if($qx<=$p->inventary_min){ echo "<p class='alert alert-warning'>El producto <b style='text-transform:uppercase;'> $p->name</b> tiene pocas existencias en inventario.</p>"; } } setcookie("selled","",time()-18600); } */ ?> <div class="box box-primary"> <table class="table table-bordered"> <?php if($sell->person_id!=""): $client = PersonData::getProvidersId($sell->person_id); ?> <tr> <td style="width:150px;">Proveedor</td> <td><?php echo $client->name."-Contacto: ".$client->lastname;?></td> </tr> <?php endif; ?> <?php if($sell->user_id!=""): $user = $sell->getUser(); ?> <tr> <td>Atendido por</td> <td><?php echo $user->name." ".$user->lastname;?></td> </tr> <?php endif; ?> </table> </div> <div class="box box-primary"> <br><table class="table table-bordered table-hover"> <thead> <th>#</th> <th>Codigo</th> <th>Cantidad</th> <th>Nombre del Producto</th> <th>Precio Unitario</th> <th>tipo</th> <th>Total</th> </thead> <?php foreach($operations as $operation){ $product = $operation->getProduct2(); ?> <tr> <td><?php echo $product->id ;?></td> <td><?php echo $product->barcode ;?></td> <td><?php echo $operation->q ;?></td> <td><?php echo $product->name ;?></td> <td>$ <?php echo number_format($operation->price_in,2,".",",") ;?></td> <td><?php echo $product->unit;?></td> <td><b>$ <?php echo number_format($operation->q*$operation->price_in,2,".",",");$total+=$operation->q*$operation->price_in;?></b></td> </tr> <?php } ?> </table> </div> <br><br> <div class="box box-primary"> <br> <table class="table table-bordered table-hover"> <h2 align="center" >Subtotal: $ <?php echo number_format($total,2,'.',','); ?></h2> </table> </div> <?php else:?> 501 Internal Error <?php endif; ?> </section>