Commit 464f10e0 by 咸鱼

Merge branch 'feature/rui.zhu/2023-02-13/订阅消息优化' into develop

parents 6a80840c 8d6d528c
...@@ -60,7 +60,7 @@ public class EvaluationServiceImpl implements EvaluationService { ...@@ -60,7 +60,7 @@ public class EvaluationServiceImpl implements EvaluationService {
try { try {
QueryByCodeResponse orderDetailResponse = orderSdkService.getOrderInfo("", request.getOrderId(), "", null, LogThreadLocal.getTrackingNo(),request.getPartnerId()); QueryByCodeResponse orderDetailResponse = orderSdkService.getOrderInfo("", request.getOrderId(), "", null, LogThreadLocal.getTrackingNo(),request.getPartnerId());
if (orderDetailResponse == null || !ResponseResult.SUCCESS.getCode().equals(orderDetailResponse.getCode() + "") || orderDetailResponse.getResult() == null) { if (orderDetailResponse == null || !ResponseResult.SUCCESS.getCode().equals(orderDetailResponse.getCode() + "") || orderDetailResponse.getResult() == null) {
return ResponseUtil.success(ResponseResult.ORDER_NOT_EXIST); return ResponseUtil.error(ResponseResult.ORDER_NOT_EXIST);
} }
OrderInfoReqs orderInfo = orderDetailResponse.getResult(); OrderInfoReqs orderInfo = orderDetailResponse.getResult();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment