fix: 신규 거래처 알림 클릭 시 신용평가 모달 자동 오픈

- TodayIssueObserverService에서 신규 거래처 알림 경로에 ?openModal=credit 파라미터 추가
- 알림 클릭 시 거래처 상세 페이지로 이동하면서 신용분석 모달 자동 오픈

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-23 13:11:52 +09:00
parent a7dcdd2469
commit 222880479d

View File

@@ -249,7 +249,7 @@ public function handleClientCreated(Client $client): void
content: __('message.today_issue.new_client', [
'name' => $client->name,
]),
path: "/accounting/vendors/{$client->id}",
path: "/accounting/vendors/{$client->id}?openModal=credit",
needsApproval: false,
expiresAt: Carbon::now()->addDays(7)
);