Skip to content

Commit

Permalink
SB-203 (!HOTFIX) : 상품 ID 리스트로 상태 확인하는 메서드 호출 수정
Browse files Browse the repository at this point in the history
SB-203 (!HOTFIX) : 상품 ID 리스트로 상태 확인하는 메서드 호출 수정

1. 잘못된 메서드 호출을 checkStoredGoodsAndStatusWithThrowBy(Long, GoodsStatus)에서 checkStoredGoodsAndStatusWithThrowBy(List<Long>, GoodsStatus)로 수정.
    - checkStoredGoodsAndStatusWithThrowBy(Long, GoodsStatus) 는 receivingId 로 조회하는 메서드다.
  • Loading branch information
seob7 committed Jul 23, 2024
1 parent 879d92f commit a7ad153
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class UsedGoodsBusiness {
public TransformUsedGoodsResponse transformUsedGoods(Long goodsId) {

// GoodsStatus 가 STORAGE 가 아닌 경우 예외
goodsService.checkStoredGoodsAndStatusWithThrowBy(goodsId, GoodsStatus.STORAGE);
goodsService.checkStoredGoodsAndStatusWithThrowBy(List.of(goodsId), GoodsStatus.STORAGE);

// GoodsStatus 를 USED 로 변경
goodsService.setGoodsStatusBy(List.of(goodsId), GoodsStatus.USED);
Expand Down

0 comments on commit a7ad153

Please sign in to comment.