Authored by caoyan

二手

... ... @@ -33,6 +33,7 @@ import com.yoho.ufo.dal.model.StoragePrice;
import com.yoho.ufo.service.ISecondhandProductService;
import com.yoho.ufo.service.model.PageResponseBO;
import com.yoho.ufo.util.DateUtil;
import com.yoho.ufo.util.ImagesHelper;
import com.yohobuy.ufo.model.enums.ProductSkupStatusEnum;
import com.yohobuy.ufo.model.enums.StorageTypeEnum;
import com.yohobuy.ufo.model.order.req.SellerOrderCancelReq;
... ... @@ -246,6 +247,7 @@ public class SecondhandProductService implements ISecondhandProductService{
private void rebuiltImageList(List<SecondhandImages> imageList, Map<Integer, String> flawIdNameMap) {
for(SecondhandImages image : imageList) {
image.setImageDesc(flawIdNameMap.get(image.getCode()));
image.setImageUrl(ImagesHelper.getImageAbsoluteUrl(image.getImageUrl(), "goodsimg"));
}
}
... ...