Skip to content

Commit

Permalink
feat: 개별 매장 상세 조회 쿼리문 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LEEJaeHyeok97 committed Dec 7, 2024
1 parent d1934e8 commit 46fb526
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ public IndividualStoreDetailsResponse findIndividualStoreDetails(Long userId, Lo
.leftJoin(store).on(storeTeam.store.id.eq(store.id))
.leftJoin(team).on(team.id.eq(storeTeam.team.id))
.leftJoin(pointTransaction).on(pointTransaction.store.id.eq(storeTeam.store.id),
pointTransaction.transactionType.eq(TransactionType.FOOD_PURCHASE),
pointTransaction.user.userId.eq(userId))
.where(storeTeam.store.id.eq(storeId),
storeTeam.team.id.eq(teamId))
Expand Down Expand Up @@ -299,7 +298,6 @@ public IndividualStoreDetailsResponse findIndividualStoreDetails(Long userId, Lo
.leftJoin(store).on(storeTeam.store.id.eq(store.id))
.leftJoin(team).on(team.id.eq(storeTeam.team.id))
.leftJoin(pointTransaction).on(pointTransaction.store.id.eq(storeTeam.store.id),
pointTransaction.transactionType.eq(TransactionType.POINT_PURCHASE),
pointTransaction.user.userId.eq(userId))
.where(storeTeam.store.id.eq(storeId),
storeTeam.team.id.eq(teamId))
Expand Down

0 comments on commit 46fb526

Please sign in to comment.