From 1f8e24520ed07be80f2190656fd35bf24a0cd14f Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期一, 04 十一月 2024 18:23:01 +0800
Subject: [PATCH] 业务类型添加修改窗口
---
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