fix 81725 法规合规评估流程-部所主管级领导审批,模块负责人没有正常回显
This commit is contained in:
+4
@@ -211,6 +211,10 @@ public class ProcessProjectStandardTerm {
|
|||||||
@ApiModelProperty(value="模块负责人")
|
@ApiModelProperty(value="模块负责人")
|
||||||
private String moduleOwner;
|
private String moduleOwner;
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
@ApiModelProperty(value="模块负责人")
|
||||||
|
private String moduleOwner_dictText;
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
@ApiModelProperty(value="责任单位联络人")
|
@ApiModelProperty(value="责任单位联络人")
|
||||||
|
|||||||
+4
-2
@@ -247,14 +247,16 @@ public class ProcessProjectStandardService extends ServiceImpl<ProcessProjectSta
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ProcessProjectStandardCommon.BSZGJLDSP_.equals(taskDefinitionKey)){
|
if (ProcessProjectStandardCommon.BSZGJLDSP_1.equals(taskDefinitionKey)
|
||||||
|
||ProcessProjectStandardCommon.BSZGJLDSP_2.equals(taskDefinitionKey)
|
||||||
|
||ProcessProjectStandardCommon.BSZGJLDSP_3.equals(taskDefinitionKey)){
|
||||||
List<String> userNameList = new ArrayList<>();
|
List<String> userNameList = new ArrayList<>();
|
||||||
moduleOwnerList.stream()
|
moduleOwnerList.stream()
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.distinct().forEach(i ->{
|
.distinct().forEach(i ->{
|
||||||
userNameList.add(userNameMap.get(i)) ;
|
userNameList.add(userNameMap.get(i)) ;
|
||||||
});
|
});
|
||||||
term.setModuleOwner(String.join(",", userNameList));
|
term.setModuleOwner_dictText(String.join(",", userNameList));
|
||||||
}
|
}
|
||||||
if (ProcessProjectStandardCommon.FGGCSSP.equals(taskDefinitionKey)){
|
if (ProcessProjectStandardCommon.FGGCSSP.equals(taskDefinitionKey)){
|
||||||
List<String> userNameList = new ArrayList<>();
|
List<String> userNameList = new ArrayList<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user