Commit f2c44910 by zhiheng.zhang

Merge branch 'feature/2020/08/06-1.9.34-劵锁定与解锁-张志恒' into qa

parents 5972aad7 6dd3c8de
......@@ -563,7 +563,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