Skip to content

Commit

Permalink
Merge pull request #154 from THEGOODs-repo/refactor/153
Browse files Browse the repository at this point in the history
♻️ Refactor: 주문 등록 시 주문 상태 결제 완료로 변경
  • Loading branch information
Eunjin3395 authored Feb 20, 2024
2 parents 94ecd28 + bd41fb2 commit 5fa8db5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static OrderItem toOrderItem(OrderRequestDTO.OrderAddDTO request, Integer
return OrderItem.builder()
.totalPrice(0L)
.deliveryFee(deliveryFee)
.status(OrderStatus.PAY_PREV)
.status(OrderStatus.PAY_COMP)
.receiverName(request.getReceiverName())
.receiverPhone(request.getReceiverPhone())
.zipcode(request.getZipcode())
Expand Down

0 comments on commit 5fa8db5

Please sign in to comment.