...
|
...
|
@@ -1819,6 +1819,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
data.put("amount", "**元");
|
|
|
data.put("businessType", data.getString("proCode").equals("T6") ? "顺丰特惠" : "标准快递");
|
|
|
data.put("custid", "***");
|
|
|
data.put("cargoInfo", "[衣服鞋帽]*1");
|
|
|
data.put("dWholeAddress", jsonReqObj.getString("dProvince") + jsonReqObj.getString("dCity") + jsonReqObj.getString("dDistrict") + jsonReqObj.getString("dAddress"));
|
|
|
//data.put("twoDimensionCode", data.getJSONObject("twoDimensionCode"));
|
|
|
|
...
|
...
|
@@ -1904,6 +1905,12 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
jsonObj.put("businessCode", "UFO");
|
|
|
jsonObj.put("custid", getCustId(req.getPhoneUid(), sellerGoods.getDepotNo()));
|
|
|
|
|
|
JSONObject cargoObj = new JSONObject();
|
|
|
cargoObj.put("name", "衣服鞋帽");
|
|
|
cargoObj.put("count", 1);
|
|
|
cargoObj.put("unit", "件");
|
|
|
jsonObj.put("cargo", cargoObj);
|
|
|
|
|
|
//收件人信息
|
|
|
if(buyerOrder.getStatus().equals(Constant.BUYER_ORDER_STATUS_JUDGE_PASS.getByteVal())
|
|
|
|| buyerOrder.getStatus().equals(Constant.BUYER_ORDER_STATUS_MINI_FAULT_ACCEPT.getByteVal())) {//收件人为买家
|
...
|
...
|
@@ -2762,4 +2769,5 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|