Compare commits

...

2 Commits

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(