...
|
...
|
@@ -270,7 +270,7 @@ public class ChannelSkuCompareServiceImpl implements IChannelSkuCompareService, |
|
|
BigDecimal channelHighPrice = csc.getChannelPrice().multiply(BigDecimal.valueOf(1).add(csc.getHighRate()));
|
|
|
bo.setChannelPriceRange(getFormatPrice(channelLowPrice) + "~" + getFormatPrice(channelHighPrice));
|
|
|
bo.setUfoCurrentPrice(getFormatPrice(storageMinPriceMap.get(csc.getSku())));
|
|
|
BigDecimal ufoMinPrice = productMap.get(csc.getProductId()).getMinPrice();
|
|
|
BigDecimal ufoMinPrice = null == productMap.get(csc.getProductId()) ? null : productMap.get(csc.getProductId()).getMinPrice();
|
|
|
bo.setUfoMinPrice(getFormatPrice(ufoMinPrice));
|
|
|
//毒当前价低于UFO价格红线则为异常,那么显示上回的建议价
|
|
|
BigDecimal suggestLowPrice = storageMap.get(csc.getSku()).getSuggestLowPrice();
|
...
|
...
|
|