From 63962979c4d76d0587ffe4256c2691be53187ac9 Mon Sep 17 00:00:00 2001 From: xhxu Date: Wed, 29 Dec 2021 17:43:46 +0800 Subject: [PATCH] =?UTF-8?q?/=E3=80=81update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../iformall/service/impl/WxFlowServiceImpl.java | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java index 0fe9df3dd..63290729a 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java @@ -368,7 +368,10 @@ public class WxFlowServiceImpl implements WxFlowService { || EnumFlowKey.NEW_CARD_UPLINE.getCode().equals(flowType) || EnumFlowKey.NEW_GROUP_UPLINE.getCode().equals(flowType) || EnumFlowKey.NEW_PRESS_UPLINE.getCode().equals(flowType) - || EnumFlowKey.B_COUPON_MERCHANT_CREATE.getCode().equals(flowType)) { + || EnumFlowKey.B_COUPON_MERCHANT_CREATE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_PREORDER_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_DISTRIBUTION_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_CREDIT_UPLINE.getCode().equals(flowType)) { WxCoupon wxCoupon = new WxCoupon(); wxCoupon.setId(Long.parseLong(businessId)); wxCoupon.setUpdateDate(new Date()); @@ -740,9 +743,13 @@ public class WxFlowServiceImpl implements WxFlowService { } public boolean isCoupon(Integer flowType){ if(EnumFlowKey.NEW_COUPON_UPLINE.getCode().equals(flowType) - ||EnumFlowKey.NEW_CARD_UPLINE.getCode().equals(flowType) - ||EnumFlowKey.NEW_GROUP_UPLINE.getCode().equals(flowType) - ||EnumFlowKey.NEW_PRESS_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_CARD_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_GROUP_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_PRESS_UPLINE.getCode().equals(flowType) + || EnumFlowKey.B_COUPON_MERCHANT_CREATE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_PREORDER_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_DISTRIBUTION_UPLINE.getCode().equals(flowType) + || EnumFlowKey.NEW_COUPON_CREDIT_UPLINE.getCode().equals(flowType) ){ return true; }