...
|
...
|
@@ -248,7 +248,11 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde |
|
|
goodsInfo.setSkupList(sellerOrderGoods.getSkupList());
|
|
|
if(SkupStatus.CAN_SELL.getCode() == skupStatus.getCode()){
|
|
|
ProductProxyService.PrdPrice prdPrice = getPrdPrice(sellerOrderGoods.getStorageId());
|
|
|
goodsInfo.setLeastPrice(prdPrice.getLeastPrice());
|
|
|
BigDecimal leastPrice = prdPrice.getLeastPrice();
|
|
|
if (Objects.nonNull(prdPrice.getLeastPrice()) && leastPrice.compareTo(BigDecimal.ZERO)>0){
|
|
|
goodsInfo.setLeastPrice(leastPrice);
|
|
|
goodsInfo.setLeastPriceOfSkuTips(buildLeastPriceTips(leastPrice));
|
|
|
}
|
|
|
}
|
|
|
orderListInfo.setGoodsInfo(goodsInfo);
|
|
|
orderListInfo.setSecendLevelCreateTime(sellerOrder.getCreateTime());
|
...
|
...
|
|