diff --git a/src/main/java/com/example/repick/domain/product/repository/ProductRepositoryImpl.java b/src/main/java/com/example/repick/domain/product/repository/ProductRepositoryImpl.java index 4602dcf..75865c0 100644 --- a/src/main/java/com/example/repick/domain/product/repository/ProductRepositoryImpl.java +++ b/src/main/java/com/example/repick/domain/product/repository/ProductRepositoryImpl.java @@ -464,7 +464,7 @@ public Page getClothingSalesReturnedProduct(Lon p.getProductName(), p.getQualityRate() != null ? p.getQualityRate().getValue() : null, p.getClothingSales().getReturnRequestDate() != null ? p.getClothingSales().getReturnRequestDate().format(DateTimeFormatter.ofPattern("MM/dd/yy")) : null, - p.getReturnState().getValue() + p.getReturnState() != null ? p.getReturnState().getValue() : "반송 미요청" )) .collect(Collectors.toList()); return new PageImpl<>(contents, pageable, total);