Merge pull request '관리자 일자별 콘텐츠 후원 정산 - 크리에이터 순으로 정렬' (#87) from test into main

Reviewed-on: #87
This commit is contained in:
klaus 2023-11-14 09:22:38 +00:00
commit 049e654535
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
.and(useCan.createdAt.loe(endDate))
)
.groupBy(donationFormattedDate, audioContent.id)
.orderBy(donationFormattedDate.desc())
.orderBy(member.id.asc(), donationFormattedDate.desc())
.fetch()
}
}