Showing
1 changed file
with
2 additions
and
0 deletions
@@ -33,6 +33,7 @@ import com.yoho.ufo.dal.model.StoragePrice; | @@ -33,6 +33,7 @@ import com.yoho.ufo.dal.model.StoragePrice; | ||
33 | import com.yoho.ufo.service.ISecondhandProductService; | 33 | import com.yoho.ufo.service.ISecondhandProductService; |
34 | import com.yoho.ufo.service.model.PageResponseBO; | 34 | import com.yoho.ufo.service.model.PageResponseBO; |
35 | import com.yoho.ufo.util.DateUtil; | 35 | import com.yoho.ufo.util.DateUtil; |
36 | +import com.yoho.ufo.util.ImagesHelper; | ||
36 | import com.yohobuy.ufo.model.enums.ProductSkupStatusEnum; | 37 | import com.yohobuy.ufo.model.enums.ProductSkupStatusEnum; |
37 | import com.yohobuy.ufo.model.enums.StorageTypeEnum; | 38 | import com.yohobuy.ufo.model.enums.StorageTypeEnum; |
38 | import com.yohobuy.ufo.model.order.req.SellerOrderCancelReq; | 39 | import com.yohobuy.ufo.model.order.req.SellerOrderCancelReq; |
@@ -246,6 +247,7 @@ public class SecondhandProductService implements ISecondhandProductService{ | @@ -246,6 +247,7 @@ public class SecondhandProductService implements ISecondhandProductService{ | ||
246 | private void rebuiltImageList(List<SecondhandImages> imageList, Map<Integer, String> flawIdNameMap) { | 247 | private void rebuiltImageList(List<SecondhandImages> imageList, Map<Integer, String> flawIdNameMap) { |
247 | for(SecondhandImages image : imageList) { | 248 | for(SecondhandImages image : imageList) { |
248 | image.setImageDesc(flawIdNameMap.get(image.getCode())); | 249 | image.setImageDesc(flawIdNameMap.get(image.getCode())); |
250 | + image.setImageUrl(ImagesHelper.getImageAbsoluteUrl(image.getImageUrl(), "goodsimg")); | ||
249 | } | 251 | } |
250 | } | 252 | } |
251 | 253 |
-
Please register or login to post a comment