变更考核组信息时,考核组信息字段保存含有空格tab符号的问题
This commit is contained in:
parent
23b62cd6a5
commit
1edf7b779b
@ -1,6 +1,5 @@
|
|||||||
package com.lz.common.utils;
|
package com.lz.common.utils;
|
||||||
|
|
||||||
import javafx.scene.input.TouchEvent;
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|||||||
@ -325,7 +325,9 @@ public class AssessManagerServiceImpl implements AssessManagerService {
|
|||||||
if(removeGroup.size() > 0){//更新考核组信息
|
if(removeGroup.size() > 0){//更新考核组信息
|
||||||
String group = String.join(",", ids.toString()).
|
String group = String.join(",", ids.toString()).
|
||||||
replace("[", "").
|
replace("[", "").
|
||||||
replace("]", "");
|
replace("]", "")
|
||||||
|
.replace(" ", "")
|
||||||
|
.replace("\t", "");
|
||||||
flowStart.setGroupIds(group);
|
flowStart.setGroupIds(group);
|
||||||
log.info("新的start对应的groupId{}", flowStart.getGroupIds());
|
log.info("新的start对应的groupId{}", flowStart.getGroupIds());
|
||||||
flowStartService.updateFlowStartById(flowStart);
|
flowStartService.updateFlowStartById(flowStart);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user