Skip to content

Commit

Permalink
fix: 그룹 검색 시 영수증 수 출력
Browse files Browse the repository at this point in the history
  • Loading branch information
Sion99 committed Jun 11, 2024
1 parent 98ba264 commit fd8d22f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ public GroupListResponseDto searchGroup(String keyword, int page) {
.organization(group.getOrganization())
.description(group.getDescription())
.memberCount(groupMemberRepository.countByGroupId(group.getId()))
.receiptCount(receiptRepository.countByGroup(group))
.accountantName(findAccountant(group).getName())
.build());

Expand Down

0 comments on commit fd8d22f

Please sign in to comment.