Skip to content

Commit

Permalink
Merge pull request #108 from Donut-DONationUTile/feature/history/giver
Browse files Browse the repository at this point in the history
Feature/history/giver
  • Loading branch information
Kang1221 authored Nov 30, 2024
2 parents 128c859 + bd36a6d commit d4360da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Donut-Server-yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public ApiResponse<?> getDonationList(LocalDateTime donateDate){

//한달 간 기부한 gift 목록 조회
YearMonth yearMonth = YearMonth.from(donateDate);
List<Gift> giftList = giftRepository.findAllByGiverIdAndCreatedAtBetween(giver.getId(), donateDate, yearMonth.atEndOfMonth().atStartOfDay());
List<Gift> giftList = giftRepository.findAllByGiverIdAndCreatedAtBetween(giver.getId(), donateDate, yearMonth.atEndOfMonth().atTime(23, 59, 59, 999999999));

Long unreceived = 0L, received = 0L, msg = 0L;
List<Donation> donationList = new ArrayList<>();
Expand Down

0 comments on commit d4360da

Please sign in to comment.