...
|
...
|
@@ -2903,7 +2903,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon |
|
|
JSONArray orderListArray = new JSONArray();
|
|
|
JSONObject orderListObj = new JSONObject();
|
|
|
orderListObj.put("sendCountryCode", "HK");
|
|
|
orderListObj.put("goodsDetail", orderInfo.getGoodsInfo() + "," + sellerGoods.getSizeName() + "码," + sellerGoods.getColorName());//商品主要信息
|
|
|
orderListObj.put("goodsDetail", orderInfo.getGoodsInfo() + sellerGoods.getSizeName() + "码" + sellerGoods.getColorName());//商品主要信息
|
|
|
orderListObj.put("orderCode", buyerOrder.getOrderCode());//订单号
|
|
|
orderListObj.put("totalWeight", null == storage.getNetWeight() ? 0 : storage.getNetWeight().multiply(BigDecimal.valueOf(1.5)));//包裹总重量
|
|
|
orderListObj.put("insurRate", orderInfo.getTotalPrice());//保费,默认是订单金额
|
...
|
...
|
|