From 34c25ddf37a3eb8da9efb04efedad089f13efe83 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期三, 24 七月 2024 18:20:27 +0800
Subject: [PATCH] 部门导入调整,按照部门名称/实现层级关系。枚举导入功能接口上传,属性池添加新增、查询、修改、导出、查看应用范围等接口。业务类型、链接类型、枚举类型增加等接口属性是否产生数据检查、根据属性名修改业务类型和连接类型中对应属性方法,以及属性池中需要的一些下拉查询接口。

---
 Source/Client/PLTClient/src/com/vci/client/auth2/action/SaveRuleAction.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Source/Client/PLTClient/src/com/vci/client/auth2/action/SaveRuleAction.java b/Source/Client/PLTClient/src/com/vci/client/auth2/action/SaveRuleAction.java
index 6b457dc..3426b61 100644
--- a/Source/Client/PLTClient/src/com/vci/client/auth2/action/SaveRuleAction.java
+++ b/Source/Client/PLTClient/src/com/vci/client/auth2/action/SaveRuleAction.java
@@ -7,6 +7,7 @@
 import javax.swing.tree.TreePath;
 
 import com.vci.client.auth2.utils.RightManagerHelper;
+import com.vci.client.common.providers.ServiceProvider;
 import com.vci.client.omd.btm.ui.BtmTree;
 import com.vci.client.omd.btm.ui.ResourceTree;
 import com.vci.client.omd.btm.wrapper.BtmItemWrapper;
@@ -52,7 +53,7 @@
 		// DataBase
 		boolean isTrue = false;
 		try {
-			isTrue = RightManagerHelper.getFrameworkService().deleteTypeRuleGrand(
+			isTrue = ServiceProvider.getFrameService().deleteTypeRuleGrand(
 					btm.name, values.get(0).ruleName);
 		} catch (Exception e) {
 			JOptionPane.showMessageDialog(
@@ -66,7 +67,7 @@
 		// save
 		boolean isTrue_add = false;
 		try {
-			isTrue_add = RightManagerHelper.getFrameworkService().saveGrand(
+			isTrue_add = ServiceProvider.getFrameService().saveGrand(
 					values.toArray(new GrandValue[values.size()]));
 		} catch (Exception e) {
 			JOptionPane.showMessageDialog(

--
Gitblit v1.9.3