From 01f39fcb06b8713901975153d0a893e86eca6a88 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期一, 07 七月 2025 19:42:26 +0800
Subject: [PATCH] 33.订单历史管理里面增加单据类型选项按钮、单据类型选项按钮 34.单据管理里面增加单据状态选项按钮 35.入库订单全部都入好了,单据状态还是作业中,现在作业中的单据是可以删除的,我不小心把这个单据删除了,怎么恢复? 36.每个界面点下一页都没反应,点第二页是有变化的,之后点任何页面都没反应 37.订单明细点开后的界面改大一点 38.新增出库订单的时候可以输入客户信息(客户名称、收件人、地址、电话等),现在拣货完成后连发给谁都不知道 39.大屏播种界面对应的数量和开单数量不一致

---
 zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/license/timer/LicenseTimer.java |   69 +++++++++++++++++++---------------
 1 files changed, 39 insertions(+), 30 deletions(-)

diff --git a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/license/timer/LicenseTimer.java b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/license/timer/LicenseTimer.java
index b0bd448..d50d51f 100644
--- a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/license/timer/LicenseTimer.java
+++ b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/license/timer/LicenseTimer.java
@@ -1,30 +1,39 @@
-package com.zy.asrs.wms.system.license.timer;
-
-import com.zy.asrs.wms.system.license.entity.license.LicenseVerify;
-import org.springframework.scheduling.annotation.Scheduled;
-import org.springframework.stereotype.Component;
-
-@Component
-public class LicenseTimer {
-
-    private static boolean SYSTEM_SUPPORT = false;//绯荤粺婵�娲荤姸鎬侊紝榛樿鍏抽棴
-
-    //姣忓ぉ鏅氫笂11鐐规洿鏂扮郴缁熸縺娲荤姸鎬�
-    @Scheduled(cron = "0 0 23 * * ? ")
-    public void timer() {
-//        System.out.println(SYSTEM_SUPPORT);
-        //楠岃瘉璁稿彲璇佹槸鍚︽湁鏁�
-        LicenseVerify licenseVerify = new LicenseVerify();
-        boolean verify = licenseVerify.verify();
-        setSystemSupport(verify);//鏇存柊绯荤粺婵�娲荤姸鎬�
-    }
-
-    public boolean getSystemSupport() {
-        return SYSTEM_SUPPORT;
-    }
-
-    public void setSystemSupport(boolean systemSupport) {
-        SYSTEM_SUPPORT = systemSupport;
-    }
-
-}
+package com.zy.asrs.wms.system.license.timer;
+
+import com.zy.asrs.wms.system.license.entity.license.LicenseVerify;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+@Component
+public class LicenseTimer {
+
+    private static boolean SYSTEM_SUPPORT = false;//绯荤粺婵�娲荤姸鎬侊紝榛樿鍏抽棴
+
+    private static int LICENSE_DAYS = 0;//璁稿彲璇佸ぉ鏁�
+
+    //姣忓ぉ鏅氫笂11鐐规洿鏂扮郴缁熸縺娲荤姸鎬�
+    @Scheduled(cron = "0 0 23 * * ? ")
+    public void timer() {
+//        System.out.println(SYSTEM_SUPPORT);
+        //楠岃瘉璁稿彲璇佹槸鍚︽湁鏁�
+        LicenseVerify licenseVerify = new LicenseVerify();
+        boolean verify = licenseVerify.verify();
+        setSystemSupport(verify);//鏇存柊绯荤粺婵�娲荤姸鎬�
+    }
+
+    public boolean getSystemSupport() {
+        return SYSTEM_SUPPORT;
+    }
+
+    public void setSystemSupport(boolean systemSupport) {
+        SYSTEM_SUPPORT = systemSupport;
+    }
+
+    public int getLicenseDays() {
+        return LICENSE_DAYS;
+    }
+
+    public void setLicenseDays(int licenseDays) {
+        LICENSE_DAYS = licenseDays;
+    }
+}

--
Gitblit v1.9.1