From aec4636e4fb430055feb66751da0e6c05bb864df Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期三, 30 四月 2025 16:25:30 +0800 Subject: [PATCH] fix(irrigatePlan): 修复终止灌溉计划时长设置错误- 将终止计划的默认时长从 9999 修改为 0 - 此修改确保在终止灌溉计划时,不会出现时长设置过长的问题 --- pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/util/InitListener.java | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/util/InitListener.java b/pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/util/InitListener.java index c535adf..6a4d699 100644 --- a/pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/util/InitListener.java +++ b/pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/util/InitListener.java @@ -20,6 +20,7 @@ import com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile; import com.dy.pipIrrGlobal.pojoSe.SeWaterType; import com.dy.pipIrrGlobal.util.DistrictLevel; +import lombok.extern.slf4j.Slf4j; import org.jdom2.Document; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.context.event.ApplicationReadyEvent; @@ -34,6 +35,7 @@ * Spring瀹瑰櫒骞舵病鏈夊垱寤哄畬锛岃�屾湰绫讳腑鐢ㄤ簡Spring瀹瑰櫒涓殑Bean锛屽嵆distriDao, userDao銆� * 鎵�浠ラ噰鐢ㄤ簡Spring浜嬩欢鐩戝惉鍣ㄦ潵瀹炵幇 */ +@Slf4j @Component public class InitListener implements ApplicationListener<ApplicationReadyEvent> { @@ -137,17 +139,22 @@ Document doc = configXml.createDom(this.resourceLoader, "init-config.xml") ; this.doInit(configXml, doc); } catch (Exception e) { - System.out.println("绯荤粺鍚姩鏃讹紝鍒濆鍖栭厤缃嚭閿� !"); - System.out.println(e.getMessage()); + log.error("绯荤粺鍚姩鏃讹紝鍒濆鍖栭厤缃嚭閿� !"); + log.error(e.getMessage()); e.printStackTrace(); } } private void doInit(ConfigXml4Springboot configXml, Document doc) throws Exception{ + //Check if configXml and doc are not null if(configXml != null && doc != null){ + //Loop through 10000 orgs for(int num = 1; num <= 10000; num++){ + //Check if the org exists if(configXml.existElement(doc, "config.orgs.org" + num)){ + //Get the tag and enable value of the org String orgTag = configXml.getSetAttrTxt(doc, "config.orgs.org" + num,"tag", null, false, null) ; Boolean enable = configXml.getSetAttrBoolean(doc, "config.orgs.org" + num, "enable", null, null); + //If the org is enabled if(enable != null && enable.booleanValue()){ //璁剧疆鏁版嵁婧� DataSourceContext.set(orgTag); -- Gitblit v1.8.0