芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Observers/OrderObserver.php
added_by = user()->id; $order->company_id = company()->id; } $order->order_number = (int)Order::max('order_number') + 1; } public function created(Order $order) { if (!isRunningInConsoleOrSeeding()) { if (!empty(request()->item_name)) { $itemsId = request()->item_id; $itemsSummary = request()->item_summary; $cost_per_item = request()->cost_per_item; $hsn_sac_code = request()->hsn_sac_code; $quantity = request()->quantity; $amount = request()->amount; $tax = request()->taxes; $invoice_item_image_url = request()->invoice_item_image_url; foreach (request()->item_name as $key => $item) : if (!is_null($item)) { $orderItem = OrderItems::create( [ 'order_id' => $order->id, 'product_id' => $itemsId[$key], 'item_name' => $item, 'item_summary' => $itemsSummary[$key] ?: '', 'type' => 'item', 'hsn_sac_code' => (isset($hsn_sac_code[$key]) && !is_null($hsn_sac_code[$key])) ? $hsn_sac_code[$key] : null, 'quantity' => $quantity[$key], 'unit_price' => round($cost_per_item[$key], 2), 'amount' => round($amount[$key], 2), 'taxes' => $tax ? array_key_exists($key, $tax) ? json_encode($tax[$key]) : null : null ] ); // Save order image url if (isset($invoice_item_image_url[$key])) { OrderItemImage::create( [ 'order_item_id' => $orderItem->id, 'external_link' => $invoice_item_image_url[$key] ?? '' ] ); } } endforeach; } if ($order->client_id != null) { // Notify client $notifyUser = User::withoutGlobalScope(ActiveScope::class)->findOrFail($order->client_id); if (request()->type && request()->type == 'send') { event(new NewOrderEvent($order, $notifyUser)); } } } } public function saving(Order $order) { if (!isRunningInConsoleOrSeeding()) { if (is_null($order->company_address_id)) { $defaultCompanyAddress = CompanyAddress::where('is_default', 1)->first(); $order->company_address_id = $defaultCompanyAddress->id; } } } public function updated(Order $order) { // Send notification if (($order->isDirty('order_date') || $order->isDirty('sub_total') || $order->isDirty('total') || $order->isDirty('status') || $order->isDirty('currency_id') || $order->isDirty('show_shipping_address') || $order->isDirty('note') || $order->isDirty('last_updated_by')) && $order->added_by != null) { $clientId = $order->client_id ?: $order->added_by; // Notify client $notifyUser = User::withoutGlobalScope(ActiveScope::class)->findOrFail($clientId); event(new OrderUpdatedEvent($order, $notifyUser)); } } public function deleting(Order $order) { $notificationModel = ['App\Notifications\NewOrder']; Notification::whereIn('type', $notificationModel) ->whereNull('read_at') ->where(function ($q) use ($order) { $q->where('data', 'like', '{"id":' . $order->id . ',%'); $q->orWhere('data', 'like', '%,"task_id":' . $order->id . ',%'); })->delete(); } }