feat: 신규거래처 알림 메시지 간소화 및 신용평가 모달 경로 수정

- 알림 메시지: "신규 거래처 :name 등록 완료" → ":name 등록"
- 모달 파라미터: openModal=credit → modal=credit

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-23 14:11:02 +09:00
parent 222880479d
commit 8c77d1b32b
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -512,7 +512,7 @@
'expense_pending' => ':title (:amount원) 승인대기', 'expense_pending' => ':title (:amount원) 승인대기',
'tax_vat_deadline' => ':quarter분기 부가세 신고 D-:days', 'tax_vat_deadline' => ':quarter분기 부가세 신고 D-:days',
'approval_pending' => ':title 승인 요청 (:drafter)', 'approval_pending' => ':title 승인 요청 (:drafter)',
'new_client' => '신규 거래처 :name 등록 완료', 'new_client' => ':name 등록',
'deposit_registered' => ':client 입금 :amount원', 'deposit_registered' => ':client 입금 :amount원',
'withdrawal_registered' => ':client 출금 :amount원', 'withdrawal_registered' => ':client 출금 :amount원',