|
@@ -236,6 +236,12 @@ public class TradeOrderUpdateServiceImpl implements TradeOrderUpdateService {
|
|
|
// 3. 拼接返回
|
|
|
AppTradeOrderSettlementRespVO respVO = TradeOrderConvert.INSTANCE.convert(calculateRespBO, address);
|
|
|
|
|
|
+ //把重复的收货地址置为空
|
|
|
+ for(Long shopId:shopRespVOMap.keySet()){
|
|
|
+ AppTradeOrderSettlementRespVO a = shopRespVOMap.get(shopId);
|
|
|
+ a.setAddress(null);
|
|
|
+ }
|
|
|
+
|
|
|
// add by Ben
|
|
|
respVO.setShopRespVOMap(shopRespVOMap);//保存每个店铺返回页面的 订单信息汇总
|
|
|
respVO.setShopSkuIds(shopSkuIds);//把sku根据店聚合放到map中
|