Commit 6dd3c8de by zhiheng.zhang

添加异常信息

parent 0a9f40dc
......@@ -569,7 +569,11 @@ public class OrderServiceImpl implements Orderservice {
if (jsonObject.containsKey("code")) {
Integer code = (Integer) jsonObject.get("code");
if (Objects.equals(ResponseCodeConstant.RESPONSE_SUCCESS_0, code) || Objects.equals(ResponseCodeConstant.RESPONSE_SUCCESS, code)) {
verificationCoupon(newMessage.getTransId());
try {
verificationCoupon(newMessage.getTransId());
}catch (Exception e){
log.error("核销券码失败transId:"+newMessage.getTransId(),e);
}
return newSendPaySuccessNoticeMessage();
} else {
return newSendPayFaileMessage();
......
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