구매목록 - isActive 가 true 인 것만 조회되도록 수정 #47

Merged
klaus merged 1 commits from test into main 2023-10-16 03:30:11 +00:00
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ class OrderQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : Orde
.innerJoin(order.audioContent, audioContent)
.where(
order.member.id.eq(memberId)
.and(order.isActive.isTrue)
.and(
order.type.eq(OrderType.KEEP)
.or(