Authored by mali

现货寄存

... ... @@ -158,7 +158,7 @@ public class DepositHelpService {
return Maps.newHashMap();
}
// http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/?debug=XYZ&method=ufo.product.list.data&productIdList=10001272
// http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/?debug=XYZ&method=ufo.product.storageList.data&storageIdList=10090886
List<StorageDataResp> storageRespList = (List<StorageDataResp>)ufoServiceCaller.call("ufo.product.storageList.data", List.class, storageList);
Map<Integer, SellerOrderGoods> result = new HashMap<>();
... ... @@ -167,7 +167,7 @@ public class DepositHelpService {
bo.setProductName(item.getProductName());
bo.setColorName(item.getColorName());
bo.setImageUrl(ImageUrlAssist.getAllProductPicUrl(item.getImageUrl(), "goodsimg", "center", "d2hpdGU="));
bo.setSizeName(null == item.getSize() ? "-" : bo.getSizeName());
bo.setSizeName(null == item.getSize() ? "-" : item.getSize().getSizeName());
result.put(item.getStorageId(), bo);
}
... ...