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; }