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 b70c9518eb - Show all commits

View File

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