Compare commits

..

No commits in common. "43279541ddf2a769a7cd1631c44f65abbe51bf04" and "b4791977c1720242494ebed616d51b9380369155" have entirely different histories.

2 changed files with 2 additions and 10 deletions

View File

@ -92,7 +92,6 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.from(order)
.innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.member, member)
.where(order.isActive.isTrue)
.groupBy(member.id, audioContent.id, order.can)
.fetch()
.size
@ -114,7 +113,6 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.from(order)
.innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.member, member)
.where(order.isActive.isTrue)
.groupBy(member.id, audioContent.id, order.type, order.can)
.offset(offset)
.limit(limit)

View File

@ -147,10 +147,7 @@ class CreatorAdminCalculateQueryRepository(private val queryFactory: JPAQueryFac
.from(order)
.innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.member, member)
.where(
audioContent.member.id.eq(memberId)
.and(order.isActive.isTrue)
)
.where(audioContent.member.id.eq(memberId))
.groupBy(member.id, audioContent.id, order.can)
.fetch()
.size
@ -176,10 +173,7 @@ class CreatorAdminCalculateQueryRepository(private val queryFactory: JPAQueryFac
.from(order)
.innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.member, member)
.where(
audioContent.member.id.eq(memberId)
.and(order.isActive.isTrue)
)
.where(audioContent.member.id.eq(memberId))
.groupBy(member.id, audioContent.id, order.type, order.can)
.offset(offset)
.limit(limit)