fix:계좌 입출금내역 상대계좌예금주명/적요 업데이트 누락 수정

기존 거래 업데이트 시 cast(상대계좌예금주명), summary(적요)가
업데이트 대상에서 빠져있어 저장되지 않던 문제 수정

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-09 17:46:57 +09:00
parent 2c138a1135
commit 64ac667cfd

View File

@@ -937,9 +937,11 @@ public function save(Request $request): JsonResponse
->first();
if ($existing) {
// 계정과목 + 잔액 업데이트
// 계정과목 + 잔액 + 적요/예금주명 업데이트
$existing->update([
'balance' => $data['balance'],
'summary' => $data['summary'],
'cast' => $data['cast'],
'account_code' => $data['account_code'],
'account_name' => $data['account_name'],
]);