...
|
...
|
@@ -434,6 +434,10 @@ public class BuyerOrderController { |
|
|
return new ApiResponse.ApiResponseBuilder().code(400).data("").message("订单号或付款方式不能为空").build();
|
|
|
}
|
|
|
JSONObject result = buyerOrderService.getSfWaybillCode(req);
|
|
|
|
|
|
|
|
|
LOGGER.info("getSfWaybillCode out. param is {}, result is {}", req, result);
|
|
|
|
|
|
if(null == result) {
|
|
|
return new ApiResponse.ApiResponseBuilder().code(500).message("查询失败").data(result).build();
|
|
|
}else if(null != result.getInteger("code") && result.getIntValue("code") != 200) {
|
...
|
...
|
|