From a7021b7620d04b04ffcd084ea07704b37b15be0a Mon Sep 17 00:00:00 2001
From: wangting <wangting@vci-tech.com>
Date: 星期一, 13 一月 2025 09:54:32 +0800
Subject: [PATCH] 按钮图标仅验证是图标类型显示方式
---
Source/Client/PLTClient/src/com/vci/client/oq/ui/ImpQT.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Source/Client/PLTClient/src/com/vci/client/oq/ui/ImpQT.java b/Source/Client/PLTClient/src/com/vci/client/oq/ui/ImpQT.java
index 115276e..68287e7 100644
--- a/Source/Client/PLTClient/src/com/vci/client/oq/ui/ImpQT.java
+++ b/Source/Client/PLTClient/src/com/vci/client/oq/ui/ImpQT.java
@@ -14,6 +14,7 @@
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import com.vci.client.LogonApplication;
+import com.vci.client.common.providers.ServiceProvider;
import com.vci.client.oq.QTClient;
import com.vci.client.oq.QTDClient;
import com.vci.corba.omd.qtm.QTInfo;
@@ -58,9 +59,9 @@
}
System.out.println(qts.size());
for(QTInfo qt: qts){
- boolean isExist = QTDClient.getService().isExistsQT(qt.qtName);
+ boolean isExist = ServiceProvider.getOMDService().getQTDService().isExistsQT(qt.qtName);
if(!isExist){
- boolean isSuc = QTDClient.getService().saveQT(qt);
+ boolean isSuc = ServiceProvider.getOMDService().getQTDService().saveQT(qt);
}
}
return true;
--
Gitblit v1.9.3