Commit bfcfba53 by ping.wu

Merge branches 'develop' and 'feature/20220105_无单收银支持储值卡_wuping' of…

Merge branches 'develop' and 'feature/20220105_无单收银支持储值卡_wuping' of http://gitlab.freemud.com/order-group-application/order-group into develop
parents 3a9278de 83982119
...@@ -188,7 +188,8 @@ public class EvaluationServiceImpl implements EvaluationService { ...@@ -188,7 +188,8 @@ public class EvaluationServiceImpl implements EvaluationService {
} }
QueryByCodeResponse orderDetailResponse = orderSdkService.getOrderInfo("", request.getOrderId(), "", null, LogThreadLocal.getTrackingNo()); QueryByCodeResponse orderDetailResponse = orderSdkService.getOrderInfo("", request.getOrderId(), "", null, LogThreadLocal.getTrackingNo());
if (orderDetailResponse == null || !ResponseResult.SUCCESS.getCode().equals(orderDetailResponse.getCode() + "") || orderDetailResponse.getResult() == null) { if (orderDetailResponse == null || !ResponseResult.SUCCESS.getCode().equals(orderDetailResponse.getCode() + "")
|| orderDetailResponse.getResult() == null || orderDetailResponse.getResult().getOrderCode() == null) {
return ResponseUtil.success(ResponseResult.ORDER_NOT_EXIST); return ResponseUtil.success(ResponseResult.ORDER_NOT_EXIST);
} }
......
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