fix:재무 대시보드 예정 수입/지출을 이번 달 데이터로 수정

- scheduleSummary(전체 미완료) → monthlySummary(이번 달 예정)
- 라벨 '이번 달 예정'과 데이터가 일치하도록 수정

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-06 06:13:53 +09:00
parent 9ad90c3664
commit 1347ba69c0

View File

@@ -51,7 +51,7 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">예정 수입</p>
<p class="text-2xl font-bold text-green-600 mt-1">+{{ number_format($scheduleSummary['pending_income']) }}</p>
<p class="text-2xl font-bold text-green-600 mt-1">+{{ number_format($monthlySummary['income']['pending']) }}</p>
<p class="text-xs text-gray-400 mt-1">이번 예정</p>
</div>
<div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center">
@@ -67,7 +67,7 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">예정 지출</p>
<p class="text-2xl font-bold text-red-600 mt-1">-{{ number_format($scheduleSummary['pending_expense']) }}</p>
<p class="text-2xl font-bold text-red-600 mt-1">-{{ number_format($monthlySummary['expense']['pending']) }}</p>
<p class="text-xs text-gray-400 mt-1">이번 예정</p>
</div>
<div class="w-12 h-12 bg-red-100 rounded-full flex items-center justify-center">