Skip to content

Commit

Permalink
fix: add return state
Browse files Browse the repository at this point in the history
  • Loading branch information
mushroom1324 committed Nov 12, 2024
1 parent f9335c7 commit a73293f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ public Page<GetReturnedProductClothingSales> 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);
Expand Down

0 comments on commit a73293f

Please sign in to comment.