����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 52.15.242.179 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 : |
<?php if(isset($_SESSION["reabastecer"])){ $cart = $_SESSION["reabastecer"]; if(count($cart)>0){ echo "paso1"; $process = true; ////////////////////////////////// if($process==true){ $sell = new ReData(); $sell->user_id = $_SESSION["user_id"]; $sell->p_id = $_POST["p_id"]; $sell->d_id = $_POST["d_id"]; $sell->total = $_POST["total"]; $sell->stock_to_id = $_POST["stock_id"]; $sell->person_id=$_POST["client_id"]!=""?$_POST["client_id"]:"NULL"; $s = $sell->add_re(); foreach($cart as $c){ //salida por ajuste cualquiera que sea la seleccion en el combo $operation_type = 2; if($_POST["d_id"]==2){ $operation_type= 3; // 3.- entrada-pendiente } $product = ProductData::getById($c["product_id"]); $op = new OperationData(); $op->price_in = $product->price_in; $op->price_out = $product->price_out; $op->stock_id = $_POST["stock_id"]; $op->product_id = $c["product_id"] ; $op->operation_type_id=$operation_type; // 1 - entrada $op->is_draft = $_POST["ajust_id"]; $op->sell_id = NULL; $op->q= $c["q"]; $add = $op->add(); echo "hola"; } ////////////////// generando el mensaje $subject = "[".$s[1]."] Nuevo reabastecimiento en el inventario"; $message = "<p>Se ha realizado un reabastecimiento en el inventario con Id = ".$s[1]."</p>"; $person_th=""; $person_td=""; if($_POST["client_id"]!=""){ $person = PersonData::getById($_POST["client_id"]); $person_th="<td>Proveedor</td>"; $person_td="<td>".$person->name." ".$person->lastname."</td>"; } $message .= "<table border='1'><tr> <td>Id</td> $person_th <td>Almacen</td> <td>Estado de pago</td> <td>Estado de entrega</td> <td>Total</td> </tr> <tr> <td>".$s[1]."</td> $person_td <td>".StockData::getById($sell->stock_to_id)->name."</td> <td>".PData::getById($sell->p_id)->name."</td> <td>".DData::getById($sell->d_id)->name."</td> <td> $".number_format($sell->total,2,".",",")."</td> </tr> </table>"; $message.="<h3 style='color:#333;'>Resumen</h3>"; $message.="<table border='1'><thead><th>Id</th><th>Codigo</th><th>Cantidad</th><th>Unidad</th><th>Producto</th><th>P.U</th><th>P. Total</th></thead>"; foreach($cart as $c){ $message.="<tr>"; $product = ProductData::getById($c["product_id"]); $message.="<td>".$product->id."</td>"; $message.="<td>".$product->barcode."</td>"; $message.="<td>".$c["q"]."</td>"; $message.="<td>".$product->unit."</td>"; $message.="<td>".$product->name."</td>"; $message.="<td>$ ".number_format($product->price_in,2,".",",")."</td>"; $message.="<td>$ ".number_format($c["q"]*$product->price_in,2,".",",")."</td>"; $message.="</tr>"; } $message.="</table>"; ////////////////// if($subject!=""&&$message!=""){ $m = new MailData(); $m->open(); $m->mail->Subject = $subject; $m->message = "<p>$message</p>"; $m->mail->IsHTML(true); $m->send(); } ////////////////// unset($_SESSION["reabastecer"]); setcookie("selled","selled"); //////////////////// print "<script>window.location='index.php?view=onere&id=$s[1]';</script>"; } } } ?>