浏览代码

1.更新企微sdk
2.注掉sap同步逻辑

hanwenjie 2 年之前
父节点
当前提交
f6b7351c81

+ 4 - 4
code/sapparent/sapservice/src/main/java/org/fouram/core/plugin/weixin/cp/core/WXCpBase.java

@@ -19,8 +19,8 @@ public class WXCpBase {
 	
 
 	public static final WxCpService service = new WxCpServiceImpl();
-	public static final WxCpUserService userService;
-	public static final WxCpDepartmentService departService;
+//	public static final WxCpUserService userService;
+//	public static final WxCpDepartmentService departService;
 	static {
 		WxCpDefaultConfigImpl configStorage = new WxCpDefaultConfigImpl();
 		configStorage.setCorpId(ConfConfig.getConfigString("wxCp.corpId"));
@@ -28,8 +28,8 @@ public class WXCpBase {
 		// 初始化基础service
 		service.setWxCpConfigStorage(configStorage);
 		// 初始化用户service
-		userService = new WxCpUserServiceImpl(service);
+//		userService = new WxCpUserServiceImpl(service);
 		// 初始化部门service
-		departService = new WxCpDepartmentServiceImpl(service);
+//		departService = new WxCpDepartmentServiceImpl(service);
 	}
 }

+ 10 - 0
code/sapparent/sapservice/src/main/java/org/fouram/core/plugin/weixin/cp/core/WXCpMessageBase.java

@@ -1,5 +1,9 @@
 package org.fouram.core.plugin.weixin.cp.core;
 
+import me.chanjar.weixin.cp.api.WxCpDepartmentService;
+import me.chanjar.weixin.cp.api.WxCpUserService;
+import me.chanjar.weixin.cp.api.impl.WxCpDepartmentServiceImpl;
+import me.chanjar.weixin.cp.api.impl.WxCpUserServiceImpl;
 import org.fouram.core.util.ConfConfig;
 
 import me.chanjar.weixin.cp.api.WxCpService;
@@ -14,6 +18,8 @@ import me.chanjar.weixin.cp.config.impl.WxCpDefaultConfigImpl;
 public class WXCpMessageBase {
 	
 	public static final WxCpService service = new WxCpServiceImpl();
+	public static final WxCpUserService userService;
+	public static final WxCpDepartmentService departService;
 	static {
 		WxCpDefaultConfigImpl configStorage = new WxCpDefaultConfigImpl();
 		configStorage.setCorpId(ConfConfig.getConfigString("wxCp.corpId"));
@@ -21,5 +27,9 @@ public class WXCpMessageBase {
 		configStorage.setAgentId(ConfConfig.getConfigInteger("wxCp.message.agentId"));
 		// 初始化基础service
 		service.setWxCpConfigStorage(configStorage);
+		// 初始化用户service
+		userService = new WxCpUserServiceImpl(service);
+		// 初始化部门service
+		departService = new WxCpDepartmentServiceImpl(service);
 	}
 }

+ 1 - 1
code/sapparent/sapservice/src/main/java/org/fouram/core/plugin/weixin/cp/util/WXCpDepartUtil.java

@@ -1,6 +1,6 @@
 package org.fouram.core.plugin.weixin.cp.util;
 
-import static org.fouram.core.plugin.weixin.cp.core.WXCpBase.departService;
+import static org.fouram.core.plugin.weixin.cp.core.WXCpMessageBase.departService;
 
 import java.util.List;
 import java.util.Map;

+ 1 - 1
code/sapparent/sapservice/src/main/java/org/fouram/core/plugin/weixin/cp/util/WXCpUserUtil.java

@@ -1,6 +1,6 @@
 package org.fouram.core.plugin.weixin.cp.util;
 
-import static org.fouram.core.plugin.weixin.cp.core.WXCpBase.userService;
+import static org.fouram.core.plugin.weixin.cp.core.WXCpMessageBase.userService;
 
 import java.util.List;
 import java.util.Set;

+ 3 - 2
code/sapparent/sapservice/src/main/java/org/fouram/job/CheckTaskSchedule.java

@@ -70,7 +70,8 @@ public class CheckTaskSchedule {
 	public void executeBiz(String checkinDay) throws Exception {
 		wxDepartService.saveWxDeparts();
 		wxUserService.saveWxUsers();
-		sapUserService.saveOrUpdateSapUsers();
+		//弃用sap
+		//sapUserService.saveOrUpdateSapUsers();
 		wxUserService.updateAllSapUserId();
 		wxCheckService.saveCheckInOffOuts(checkinDay);
 		// 判断打卡记录小于10条记录认为是假期
@@ -79,7 +80,7 @@ public class CheckTaskSchedule {
 			return;
 		}
 		sapCheckdateService.saveCheckdate(checkinDay);
-		employeeTimeService.saveEmployeeTimes();
+//		employeeTimeService.saveEmployeeTimes();
 		wxCheckOptionService.saveOptions(checkinDay);
 		wxApprovalInfoService.saveApprovalInfos(checkinDay.substring(0, 7));
 		boolean specialCheckinDay = false;