Commit 4a968e4f by huiyang.chen

fix 核销券log

parent 074252b6
...@@ -32,7 +32,9 @@ public class CouponHandle { ...@@ -32,7 +32,9 @@ public class CouponHandle {
*/ */
@Async("couponExecutor") @Async("couponExecutor")
public void asyncVerificationCoupon(QueryOrdersResponse.DataBean.OrderBean orderBean){ public void asyncVerificationCoupon(QueryOrdersResponse.DataBean.OrderBean orderBean){
log.info("核销券码请求入参:{}",JSONObject.toJSONString(orderBean));
List<MCCafeCouponRequest> list = mcCafeCouponAdapter.convertOrderBean2CouponLockRequest(orderBean); List<MCCafeCouponRequest> list = mcCafeCouponAdapter.convertOrderBean2CouponLockRequest(orderBean);
log.info("核销券码请求出参:{}",JSONObject.toJSONString(list));
if (CollectionUtils.isNotEmpty(list)) { if (CollectionUtils.isNotEmpty(list)) {
for (MCCafeCouponRequest mcCafeCouponRequest: list) { for (MCCafeCouponRequest mcCafeCouponRequest: list) {
//重试3次 //重试3次
......
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