From ab890bca34582e2ec8e2d4b19798f067ea075b7a Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 28 四月 2025 10:30:47 +0800
Subject: [PATCH] 最新版本541200007

---
 server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java |   36 ++++++++++++++++++++++++------------
 1 files changed, 24 insertions(+), 12 deletions(-)

diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java
index 868502d..8dd4deb 100644
--- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java
+++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java
@@ -699,9 +699,8 @@
             );
             if (com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(systemUserList)) {
                 WxPlatNotice wxPlatNotice = new WxPlatNotice();
-                wxPlatNotice.sendPlatformJobSignNotice(wxNoticeConfigMapper, platformJob,
+                wxPlatNotice.sendPlatformJobSignNotice(systemDictDataBiz,wxNoticeConfigMapper, platformJob,
                         WxPlatConstants.platformJobContent.platformGroupSignIn,
-                        systemDictDataBiz.queryByCode(Constants.WX_PLATFORM, Constants.WX_PLATFORM_ACCESS_TOKEN).getCode(),
                         systemUserList.stream().map(i->i.getOpenid()).collect(Collectors.toList())
                 );
             }
@@ -738,16 +737,17 @@
                     PlatformGroup platformGroup = platformGroupMapper.selectById(groupId);
                     if(Objects.nonNull(platformGroup)&&StringUtils.isNotBlank(platformGroup.getUnFinishNoticeUsers())){
                         List<SystemUser> systemUserList = systemUserMapper.selectList(new QueryWrapper<SystemUser>().lambda()
-                                .eq(SystemUser::getDeleted,Constants.ZERO).eq(SystemUser::getStatus,Constants.ZERO).isNotNull(SystemUser::getOpenid)
+                                .eq(SystemUser::getDeleted,Constants.ZERO)
+                                .eq(SystemUser::getStatus,Constants.ZERO)
+                                .isNotNull(SystemUser::getOpenid)
                                 .in(SystemUser::getMemberId,Arrays.asList(platformGroup.getUnFinishNoticeUsers().split(",")))
                         );
                         if (com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(systemUserList)) {
                             WxPlatNotice wxPlatNotice = new WxPlatNotice();
-                            wxPlatNotice.sendUnFinishNotice(
+                            wxPlatNotice.sendUnFinishNotice(systemDictDataBiz,
                                     wxNoticeConfigMapper,
                                     platformJobList.stream().filter(i->Constants.equalsInteger(i.getPlatformGroupId(),groupId)).collect(Collectors.toList()).size(),
                                     WxPlatConstants.platformJobContent.unFinishNotice,
-                                    systemDictDataBiz.queryByCode(Constants.WX_PLATFORM, Constants.WX_PLATFORM_ACCESS_TOKEN).getCode(),
                                     systemUserList.stream().map(i->i.getOpenid()).collect(Collectors.toList())
                             );
                         }
@@ -755,11 +755,23 @@
                 }
             }
         }
-
-
-
     }
 
+    public static void main(String[] args) {
+        Integer key1 =20;
+        Integer key2 =20;
+        Integer key3 =30;
+        Integer key4 =40;
+        List<Integer> list = new ArrayList<>();
+        list.add(key1);
+        list.add(key2);
+        list.add(key3);
+        list.add(key4);
+        Set<Integer> setList = new HashSet<>(list);
+        for (Integer groupId:setList) {
+            System.out.println(groupId);
+        }
+    }
 
 
 
@@ -1026,7 +1038,6 @@
             wxPlatNotice.sendPlatformJobTemplateNotice(systemDictDataBiz,
                     wxNoticeConfigMapper, p,
                     objCode,
-                    systemDictDataBiz.queryByCode(Constants.WX_PLATFORM, Constants.WX_PLATFORM_ACCESS_TOKEN).getCode(),
                     Arrays.asList(driver.getOpenid().split(","))
             );
         }
@@ -2440,7 +2451,9 @@
         if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(jobIdList)){
             List<PlatformJob> platformJobList = platformJobMapper.selectList(new QueryWrapper<PlatformJob>().lambda()
                     .eq(PlatformJob::getIsdeleted,Constants.ZERO)
-                    .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CONFIRM,Constants.PlatformJobStatus.WART_SIGN_IN)
+                    .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CONFIRM.getKey()
+                            ,Constants.PlatformJobStatus.WART_SIGN_IN.getKey()
+                            ,Constants.PlatformJobStatus.WAIT_CALL.getKey())
                     .in(PlatformJob::getId,jobIdList)
             );
             if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(platformJobList)){
@@ -2448,10 +2461,9 @@
                 platformJobMapper.update(null,new UpdateWrapper<PlatformJob>().lambda()
                         .set(PlatformJob::getStatus,Constants.PlatformJobStatus.DONE.getKey())
                         .set(PlatformJob::getDoneDate,new Date())
-                        .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CONFIRM,Constants.PlatformJobStatus.WART_SIGN_IN)
+                        .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CONFIRM.getKey(),Constants.PlatformJobStatus.WART_SIGN_IN.getKey())
                         .eq(PlatformJob::getIsdeleted,Constants.ZERO)
                         .in(PlatformJob::getId,platformJobList.stream().map(i->i.getId()).collect(Collectors.toList())));
-
             }
 
         }

--
Gitblit v1.9.3