From 2f3ec13b24605475bb28b24e9a591a4a168e3990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=B3=91=EC=B2=A0?= Date: Wed, 4 Mar 2026 20:00:04 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[entertainment]=20=EB=B6=84=EA=B8=B0=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=95=A1=20=EC=A1=B0=ED=9A=8C=EC=97=90=20?= =?UTF-8?q?=EB=82=A0=EC=A7=9C=20=ED=95=84=ED=84=B0=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- app/Services/EntertainmentService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/EntertainmentService.php b/app/Services/EntertainmentService.php index 2e1304f..7495e6d 100644 --- a/app/Services/EntertainmentService.php +++ b/app/Services/EntertainmentService.php @@ -266,7 +266,7 @@ public function getDetail( // 연간/분기 사용액 조회 $annualUsed = $this->getUsedAmount($tenantId, $annualStartDate, $annualEndDate); - $quarterlyUsed = $this->getUsedAmount($tenantId, $quarterStartDate, $quarterEndDate); + $quarterlyUsed = $this->getUsedAmount($tenantId, $filterStartDate, $filterEndDate); // 잔여/초과 계산 $annualRemaining = max(0, $annualLimit - $annualUsed);