提交代码

dev-discount
胡锐 2 years ago
parent 7dc749ffd0
commit aa1e245f0b
  1. 11
      hai-schedule/src/main/java/com/hai/schedule/HighCouponSchedule.java

@ -84,9 +84,10 @@ public class HighCouponSchedule {
if (jsonObject.getString("respCode").equals("0000")) {
JSONObject data = HuiLianTongUnionCardConfig.resolveResponse(jsonObject.getString("data"));
if (data.getString("respCode").equals("0000") && data.getJSONObject("data").getInteger("state") != 20) {
couponCodeOther.setStatus(data.getJSONObject("data").getInteger("state"));
if (data.getString("respCode").equals("0000")) {
JSONObject responseObject = JSONObject.parseObject(data.getString("data"));
if (responseObject.getInteger("state") != 20) {
couponCodeOther.setStatus(responseObject.getInteger("state"));
highCouponCodeOtherMapper.updateByPrimaryKey(couponCodeOther);
if (couponCodeOther.getCouponAgentCodeId() != null) {
@ -103,7 +104,7 @@ public class HighCouponSchedule {
List<HighUserCoupon> list = highUserCouponMapper.selectByExample(userCouponExample);
if (list.size() > 0) {
HighUserCoupon userCoupon = list.get(0);
if (data.getJSONObject("data").getInteger("state") == 40) {
if (responseObject.getInteger("state") == 40) {
userCoupon.setStatus(2);
userCoupon.setConsumeTime(new Date());
} else {
@ -118,7 +119,7 @@ public class HighCouponSchedule {
highOrderService.childOrderComplete(couponCodeOther.getChildOrderId());
}
}
}
}
}
}

Loading…
Cancel
Save