| Server IP : 54.94.228.101 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/app/Events/ |
Upload File : |
<?php
namespace App\Events;
use App\Modules\OrdemCompra\Models\OrdemCompra;
use Illuminate\Support\Facades\Log;
use DB;
class OrdemCompraEvent
{
/**
* Listen to the OrdemCompra created event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function created(OrdemCompra $OrdemCompra)
{
}
/**
* Listen to the OrdemCompra deleting event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function deleting(OrdemCompra $OrdemCompra)
{
//
}
/**
* Listen to the OrdemCompra created event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function updated(OrdemCompra $OrdemCompra)
{
}
/**
* Listen to the OrdemCompra deleting event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function updating(OrdemCompra $OrdemCompra)
{
//
}
/**
* Listen to the OrdemCompra created event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function saved(OrdemCompra $OrdemCompra)
{
if($OrdemCompra->status == 'A'){
$items = $OrdemCompra->produtos;
foreach ($items as $item) {
$item->produto->listar_compras = 1;
$item->produto->save();
}
}
if(empty($OrdemCompra->hashkey)){
$OrdemCompra->hashkey = md5(uniqid(rand(), true));
$OrdemCompra->save();
}
if($OrdemCompra->insert_log){
$ordemLog = $OrdemCompra->replicate()->toArray();
$ordemLog['ordem_compra_id'] = $OrdemCompra->id;
$ordemLog['created_at'] = date('Y-m-d H:i:s');
unset($ordemLog['produtos']);
$ordemArray = collect($ordemLog)->toArray();
DB::table('ordem_compra_log')->insert($ordemArray);
}
}
/**
* Listen to the OrdemCompra deleting event.
*
* @param OrdemCompra $OrdemCompra
* @return void
*/
public function saving(OrdemCompra $OrdemCompra)
{
//
}
}