变更考核组信息时,考核组信息字段保存含有空格tab符号的问题

This commit is contained in:
wulin 2021-12-07 14:16:05 +08:00
parent 23b62cd6a5
commit 1edf7b779b
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,5 @@
package com.lz.common.utils;
import javafx.scene.input.TouchEvent;
import org.apache.commons.lang.StringUtils;
import java.math.BigDecimal;

View File

@ -325,7 +325,9 @@ public class AssessManagerServiceImpl implements AssessManagerService {
if(removeGroup.size() > 0){//更新考核组信息
String group = String.join(",", ids.toString()).
replace("[", "").
replace("]", "");
replace("]", "")
.replace(" ", "")
.replace("\t", "");
flowStart.setGroupIds(group);
log.info("新的start对应的groupId{}", flowStart.getGroupIds());
flowStartService.updateFlowStartById(flowStart);