From 7d7b42822d9a11f8fa107fc3bbbbd518f0a7ef91 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期六, 09 十一月 2024 01:17:28 +0800 Subject: [PATCH] 1、修复系统功能模块-》管理功能模块修改是否有效功能修改无效问题。 2、Action管理,Action分类删除报错问题修改。 --- 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