From 18c43123b51a1688ab4ae01fe3d171c7d92e619b Mon Sep 17 00:00:00 2001
From: wangting <wangting@vci-tech.com>
Date: 星期四, 16 一月 2025 18:19:34 +0800
Subject: [PATCH] 1、调整会话过期提示 2、流程设计器隐藏拓展按钮,隐藏右下角图标

---
 Source/Client/PLTClient/src/com/vci/client/portal/platformPortal/ExportExcel.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Source/Client/PLTClient/src/com/vci/client/portal/platformPortal/ExportExcel.java b/Source/Client/PLTClient/src/com/vci/client/portal/platformPortal/ExportExcel.java
index 5664877..eb4d153 100644
--- a/Source/Client/PLTClient/src/com/vci/client/portal/platformPortal/ExportExcel.java
+++ b/Source/Client/PLTClient/src/com/vci/client/portal/platformPortal/ExportExcel.java
@@ -17,6 +17,7 @@
 import org.apache.poi.hssf.usermodel.HSSFWorkbook;
 
 import com.vci.client.LogonApplication;
+import com.vci.client.common.providers.ServiceProvider;
 import com.vci.client.omd.provider.ApProvider;
 import com.vci.client.omd.provider.BtmProvider;
 import com.vci.client.omd.provider.LinkTypeProvider;
@@ -189,7 +190,7 @@
 			}
 			BufferedWriter qtbw = null;
 			try {
-				QTInfo qt = QTDClient.getService().getQT(qtName);
+				QTInfo qt = ServiceProvider.getOMDService().getQTDService().getQT(qtName);
 				if(qt != null){
 					//鏌ヨ妯℃澘鍚嶇О
 					cell = row.createCell(6);
@@ -214,7 +215,7 @@
 					cell = row.createCell(8);
 					cell.setCellValue(qt.btmName);
 				}
-				QTD[] qtdsByBtmName = QTDClient.getService().getBizTypeQTDs(btmname);
+				QTD[] qtdsByBtmName = ServiceProvider.getOMDService().getQTDService().getBizTypeQTDs(btmname);
 				for(int qtdIndex =0;qtdIndex<qtdsByBtmName.length;qtdIndex++){
 					HSSFRow qtdRow = qtdSheet.createRow(qtdIndex);
 					QTD qtd = qtdsByBtmName[qtdIndex];
@@ -235,7 +236,7 @@
 						qtdCell.setCellValue(qtdattr.substring(0,qtdattr.length()-1));
 					}
 				}
-				QTD[] qtdsByLinkTypeName = QTDClient.getService().getLinkTypeQTDs(linkname);
+				QTD[] qtdsByLinkTypeName = ServiceProvider.getOMDService().getQTDService().getLinkTypeQTDs(linkname);
 				for(int qtdLinkIndex =0;qtdLinkIndex<qtdsByLinkTypeName.length;qtdLinkIndex++){
 					HSSFRow qtdRow = qtdSheet.createRow(qtdLinkIndex);
 					QTD qtd = qtdsByLinkTypeName[qtdLinkIndex];

--
Gitblit v1.9.3