Merge pull request '구매목록 - isActive 가 true 인 것만 조회되도록 수정' (#47) from test into main

Reviewed-on: #47
This commit is contained in:
klaus 2023-10-16 03:30:10 +00:00
commit 8e90dbc8b6
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) .innerJoin(order.audioContent, audioContent)
.where( .where(
order.member.id.eq(memberId) order.member.id.eq(memberId)
.and(order.isActive.isTrue)
.and( .and(
order.type.eq(OrderType.KEEP) order.type.eq(OrderType.KEEP)
.or( .or(