From a7dcdd2469653f4ca78af6d03cff2c784bee12f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Fri, 23 Jan 2026 11:22:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=97=A4=EB=8D=94=20=EC=95=8C=EB=9E=8C?= =?UTF-8?q?=20=EA=B2=BD=EB=A1=9C=EB=A5=BC=20=EC=83=81=EC=84=B8=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 입금: /accounting/deposit-management → /accounting/deposits/{id} - 출금: /accounting/withdrawal-management → /accounting/withdrawals/{id} - 수주: /sales/order-management-sales → /sales/order-management-sales/{id} - 미수금: /accounting/receivables-status → /accounting/bad-debt-collection/{id} - 재고: /material/stock-status → /material/stock-status/{id} - 신규거래처: /accounting/vendors → /accounting/vendors/{id} Co-Authored-By: Claude --- app/Services/TodayIssueObserverService.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Services/TodayIssueObserverService.php b/app/Services/TodayIssueObserverService.php index 0033b2a..28a0ca5 100644 --- a/app/Services/TodayIssueObserverService.php +++ b/app/Services/TodayIssueObserverService.php @@ -63,7 +63,7 @@ public function handleOrderChange(Order $order): void 'client' => $clientName, 'amount' => $amount, ]), - path: '/sales/order-management-sales', + path: "/sales/order-management-sales/{$order->id}", needsApproval: false, expiresAt: Carbon::now()->addDays(7) ); @@ -107,7 +107,7 @@ public function handleBadDebtChange(BadDebt $badDebt): void 'amount' => $amount, 'days' => $days, ]), - path: '/accounting/receivables-status', + path: "/accounting/bad-debt-collection/{$badDebt->id}", needsApproval: false, expiresAt: null // 해결될 때까지 유지 ); @@ -141,7 +141,7 @@ public function handleStockChange(Stock $stock): void content: __('message.today_issue.safety_stock_alert', [ 'item' => $itemName, ]), - path: '/material/stock-status', + path: "/material/stock-status/{$stock->id}", needsApproval: false, expiresAt: null // 재고 보충 시까지 유지 ); @@ -249,7 +249,7 @@ public function handleClientCreated(Client $client): void content: __('message.today_issue.new_client', [ 'name' => $client->name, ]), - path: '/accounting/vendors', + path: "/accounting/vendors/{$client->id}", needsApproval: false, expiresAt: Carbon::now()->addDays(7) ); @@ -292,7 +292,7 @@ public function handleDepositCreated(Deposit $deposit): void 'client' => $clientName, 'amount' => $amount, ]), - path: '/accounting/deposit-management', + path: "/accounting/deposits/{$deposit->id}", needsApproval: false, expiresAt: Carbon::now()->addDays(7) ); @@ -335,7 +335,7 @@ public function handleWithdrawalCreated(Withdrawal $withdrawal): void 'client' => $clientName, 'amount' => $amount, ]), - path: '/accounting/withdrawal-management', + path: "/accounting/withdrawals/{$withdrawal->id}", needsApproval: false, expiresAt: Carbon::now()->addDays(7) );