Skip to content

Commit

Permalink
Merge pull request #111 from marinesnow34/togo
Browse files Browse the repository at this point in the history
Fix: 토스 요청을 기록에서 제외
  • Loading branch information
marinesnow34 authored Nov 30, 2023
2 parents 3e90b97 + c5e6848 commit d1e6fe8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ public HistoryRes ordersToNewHistoryRes(List<Order> orders) {
.receipts(
orders
.stream()
.filter(order -> order.getProgress() != REQUEST)
.filter(order -> order.getProgress() != CANCEL)
.filter(order -> order.getProgress() != PICKUP)
.filter(order -> order.getProgress() != FAIL)
Expand Down

0 comments on commit d1e6fe8

Please sign in to comment.