From 4e510218fd942bd571cb1c76467ef82d099263a1 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期四, 21 三月 2024 18:02:07 +0800
Subject: [PATCH] ERP接口
---
server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java | 36 +++++++++++++++++++++++-------------
1 files changed, 23 insertions(+), 13 deletions(-)
diff --git a/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java b/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
index ea2897d..5fa143f 100644
--- a/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
+++ b/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
@@ -8,6 +8,7 @@
import com.doumee.service.business.MemberService;
import com.doumee.service.business.impl.hksync.HkSyncEmpowerServiceImpl;
import com.doumee.service.business.impl.hksync.HkSyncImgServiceImpl;
+import com.doumee.service.business.impl.hksync.HkSyncParkServiceImpl;
import com.doumee.service.business.impl.hksync.ferp.HkSyncOrgUserToHKServiceImpl;
import com.doumee.service.business.impl.hksync.HkSyncVisitServiceImpl;
import com.doumee.service.business.impl.hksync.fhk.HkSyncVehicleFromHKServiceImpl;
@@ -25,10 +26,12 @@
* @date 2021-10-10 14:40:35
* https://www.bejson.com/othertools/cron/ cron 琛ㄨ揪寮忕敓鎴愬湴鍧�
*/
-//@Component
+@Component
@EnableScheduling
public class ScheduleTool {
+ @Autowired
+ private HkSyncParkServiceImpl hkSyncParkService;
@Autowired
private HkSyncImgServiceImpl hkSyncImgService;
@Autowired
@@ -61,7 +64,7 @@
* 姣忓垎閽熸媺鍙栦竴娆′粖鏃ョ殑璁垮棰勭害鏁版嵁
* @throws Exception
*/
- @Scheduled(fixedDelay= 60*1000)
+ @Scheduled(fixedDelay= 30*1000)
public void syncVistAppointData() throws Exception {
if(Constants.DEALING_FROM_HK_VISIT){
return ;
@@ -71,10 +74,18 @@
hkSyncVisitFromHKService.syncVistAppointData(new Date());
Constants.DEALING_FROM_HK_VISIT =false;
}catch (Exception e){
- throw new BusinessException(ResponseStatus.SERVER_ERROR.getCode(), "瀵逛笉璧凤紝娴峰悍鍚屾鏁版嵁澶辫触~");
+// throw new BusinessException(ResponseStatus.SERVER_ERROR.getCode(), "瀵逛笉璧凤紝娴峰悍鍚屾鏁版嵁澶辫触~");
}finally {
Constants.DEALING_FROM_HK_VISIT =false;
}
+ }
+ /**
+ * 姣�10鍒嗛挓鎷夊彇涓�娆℃渶鏂拌瀹㈢櫥璁扮姸鎬侊紙棰勭害鎴愬姛鍜屽凡鐧昏锛�
+ * @throws Exception
+ */
+ @Scheduled(fixedDelay= 10*60*1000)
+ public void syncVisitOuttimeStatus() throws Exception {
+ hkSyncVisitService.getOutTimeVisitRecord();
}
/**
* 涓嬭浇娴峰悍绯荤粺鍥剧墖鏁版嵁
@@ -116,38 +127,37 @@
public void syncVisitData() {
hkSyncVisitService.syncVisitData();
}
- /**
+ /* *//**
* 瀹氭椂鍚屾鍐呴儴浜哄憳鎺堟潈鍒版捣搴风郴缁�
* @throws Exception
- */
- @Scheduled(fixedDelay= 60*1000)
+ *//*
+ @Scheduled(fixedDelay= 3*1000)
public void syncEmpowerData() {
-
hkSyncEmpowerService.syncEmpowerData();
}
- /**
+ *//**
* 瀹氭椂鏌ヨ浜哄憳涓嬪彂娴峰悍缁撴灉锛堜换鍔℃槸鍚﹀凡涓嬭浇缁撴潫锛�
* @throws Exception
- */
+ *//*
@Scheduled(fixedDelay= 60*1000)
public void syncEmpowerResultData() {
hkSyncEmpowerService.syncEmpowerResultData();
}
- /**
+ *//**
* 瀹氭椂鏌ヨ浜哄憳瀹為檯涓嬪彂鏉冮檺缁撴灉锛屾槸鍚﹀凡缁忎笅杞芥垚鍔�
* @throws Exception
- */
+ *//*
@Scheduled(fixedDelay= 60*1000)
public void syncEmpowerDetailData() {
hkSyncEmpowerService.syncEmpowerDetailData();
- }
+ }*/
/**
* 瀹氭椂鍚屾杞﹁締鍖呮湡鍒版捣搴风郴缁�
* @throws Exception
*/
@Scheduled(fixedDelay= 60*1000)
public void syncParkBookData() {
- hkSyncImgService.syncParkBookData();
+ hkSyncParkService.syncParkBookData();
}
--
Gitblit v1.9.3