test #210

Merged
klaus merged 7 commits from test into main 2024-09-06 19:00:39 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 1cca469577 - Show all commits

View File

@ -219,7 +219,7 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.and(useCan.createdAt.loe(endDate)) .and(useCan.createdAt.loe(endDate))
) )
.groupBy(formattedDate, creatorCommunity.id, creatorSettlementRatio.communitySettlementRatio) .groupBy(formattedDate, creatorCommunity.id, creatorSettlementRatio.communitySettlementRatio)
.orderBy(member.id.asc(), formattedDate.desc()) .orderBy(member.id.asc(), formattedDate.desc(), creatorCommunity.id.desc())
.offset(offset) .offset(offset)
.limit(limit) .limit(limit)
.fetch() .fetch()