Authored by caoyan

Merge branch 'dev_suggestPrice_20181119' into test6.8.2

... ... @@ -260,7 +260,7 @@ public class ChannelSkuCompareServiceImpl implements IChannelSkuCompareService,
bo.setId(csc.getId());
bo.setProductId(csc.getProductId());
bo.setSku(csc.getSku());
bo.setProductName(productMap.get(csc.getProductId()).getProductName());
bo.setProductName(null == productMap.get(csc.getProductId()) ? "" : productMap.get(csc.getProductId()).getProductName());
bo.setSizeName(sizeIdNameMap.get(csc.getSizeId()));
bo.setChannelPrice(getFormatPrice(csc.getChannelPrice()));
bo.setChannelUrl(csc.getChannelUrl());
... ...