Compare commits

...

2 Commits

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()
}
}