Skip to content

Commit

Permalink
Update BrandService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ceginer authored Aug 24, 2023
1 parent 0774935 commit d032948
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/example/neoul/service/BrandService.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public List<BrandRes.ProductListRes> productList(Brand brand) {
BrandRes.ProductListRes e = BrandRes.ProductListRes.builder()
.productId(product.getId())
.name(product.getName())
.price(product.getPrice())
.price(product.getDiscountedSalePrice())
.deliveryInfo(product.getDeliveryInfo())
.productUrl(product.getProductUrl())
.productImgList(productImgList)
Expand Down Expand Up @@ -224,4 +224,4 @@ public BrandRes.getLikedBrandRes getUserLikedBrand() {
// .likedBrands(likedBrandList)
// .build();
// }
}
}

0 comments on commit d032948

Please sign in to comment.