From 5d7bb8590f6922bf0fbc2e690ce469290afa7790 Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 16 Mar 2026 16:01:42 +0900 Subject: [PATCH] =?UTF-8?q?fix(can):=20=EC=BA=94=20=EC=82=AC=EC=9A=A9=20?= =?UTF-8?q?=EB=82=B4=EC=97=AD=20=EC=A1=B0=ED=9A=8C=EC=8B=9C=20=ED=99=98?= =?UTF-8?q?=EB=B6=88=EB=90=9C=20=EC=82=AC=EC=9A=A9=20=EB=82=B4=EC=97=AD?= =?UTF-8?q?=EC=9D=80=20=EC=A1=B0=ED=9A=8C=EB=90=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt index cadeb48f..eba01100 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt @@ -122,6 +122,7 @@ class CanQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : CanQue .leftJoin(qRecipientMember).on(useCanCalculate.recipientCreatorId.eq(qRecipientMember.id)) .where( useCan.member.id.eq(member.id) + .and(useCan.isRefund.isFalse) .and(useCan.can.add(useCan.rewardCan).gt(0)) .and(gatewayCondition) )