From 23b6d5179affb30aa6b0cef035fe62da82652d38 Mon Sep 17 00:00:00 2001 From: zhengfangyuan Date: Mon, 12 Dec 2022 16:24:04 +0800 Subject: [PATCH] fix bug --- .../com/iformall/service/impl/WxCouponOrderServiceImpl.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java index dbf104325..638a0cd96 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java @@ -402,6 +402,7 @@ public class WxCouponOrderServiceImpl implements WxCouponOrderService { if (bUserIdList.contains(bUserId)) { bUserIdList.add(bUserId); } + mallBUserIdList.put(mallTenantId, bUserIdList); if (!mallTenantIdList.contains(mallTenantId)) { mallTenantIdList.add(mallTenantId); } @@ -922,7 +923,7 @@ public class WxCouponOrderServiceImpl implements WxCouponOrderService { if(null != bUserId && (!bUserIdList.contains(bUserId))){ bUserIdList.add(bUserId); } - + mallBUserIdList.put(bo.getBTenantId(), bUserIdList); List merchantIdList = mallMerchantIdList.get(bo.getBTenantId()); if (null == merchantIdList) { merchantIdList = new ArrayList(); @@ -931,7 +932,7 @@ public class WxCouponOrderServiceImpl implements WxCouponOrderService { if (null != bmerchantId && (!merchantIdList.contains(bmerchantId))) { merchantIdList.add(bmerchantId); } - + mallMerchantIdList.put(bo.getBTenantId(), merchantIdList); if (!mallTenantIdList.contains(bo.getBTenantId())) { mallTenantIdList.add(bo.getBTenantId()); }