Skip to content

Commit

Permalink
hotfix: 상품 상세 조회 시 판매자 입장 거래 상태값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yurim0628 committed Jan 26, 2024
1 parent e83bdcb commit 5140013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public ProductDetailResponse getProduct(
List<Nego> negoList = negoService.findAllByProductAndStatus(product, NegotiationStatus.NEGOTIATING);

if (!negoList.isEmpty()) {
negoProductStatus = NegoProductStatus.NEGOTIATING;
negoProductStatus = NegoProductStatus.NEGOTIATION_HAVE;
}
}
else {
Expand Down

0 comments on commit 5140013

Please sign in to comment.