From 4d3f7f10d422fd6eee128fa32bc48ce7b10ec09d Mon Sep 17 00:00:00 2001
From: wangting <wangting@vci-tech.com>
Date: 星期二, 07 一月 2025 18:24:21 +0800
Subject: [PATCH] 属性定义参照类型改成下拉树选择,处理值域显示不正确的问题,属性名选择改为下拉搜索

---
 Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
index 8f6454e..6661629 100644
--- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
+++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
@@ -1,4 +1,5 @@
 package com.vci.web.service.impl;
+
 import cn.hutool.core.io.FileUtil;
 import com.vci.constant.FrameWorkLangCodeConstant;
 import com.vci.corba.common.PLException;
@@ -19,8 +20,11 @@
 import com.vci.web.enumpck.PlTypetypeEnum;
 import com.vci.web.other.ExportActionLogBean;
 import com.vci.web.other.ExportBeans;
-import com.vci.web.service.*;
-import com.vci.web.util.*;
+import com.vci.web.service.OsActionServiceI;
+import com.vci.starter.web.util.Lcm.Func;
+import com.vci.web.util.PinyinCommon;
+import com.vci.web.util.PlatformClientUtil;
+import com.vci.web.util.WebUtil;
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -237,6 +241,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().savePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"淇濆瓨澶辫触锛侊紒"});
@@ -270,6 +275,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().updatePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"淇敼澶辫触锛侊紒"});
@@ -295,6 +301,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().deletePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"鍒犻櫎澶辫触锛侊紒"});

--
Gitblit v1.9.3