修改标准拆分字段校验
This commit is contained in:
+2
-2
@@ -3329,8 +3329,8 @@ public class FileSplitItemsEOServiceImpl extends ServiceImpl<FileSplitItemsEOMap
|
|||||||
String[] treePathList = value.split(",");
|
String[] treePathList = value.split(",");
|
||||||
for (String treePath : treePathList) {
|
for (String treePath : treePathList) {
|
||||||
List<SysDictItem> path =
|
List<SysDictItem> path =
|
||||||
sysDictItemList.stream().filter(o -> ("/" + o.getLevelPath() + "/")
|
sysDictItemList.stream().filter(o -> treePath.equals(o.getLevelPath()))
|
||||||
.contains("/" + treePath + "/")).collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
if (!path.isEmpty()){
|
if (!path.isEmpty()){
|
||||||
if (path.size() > 1) {
|
if (path.size() > 1) {
|
||||||
if(MessageUtils.getLanguage().getValue().equals(LanguageEnum.CN.getValue())) {
|
if(MessageUtils.getLanguage().getValue().equals(LanguageEnum.CN.getValue())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user