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

This commit is contained in:
Klaus 2023-10-16 12:26:01 +09:00
parent 7a22e7d887
commit 5068be1a4c
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(