[修改] 代办

This commit is contained in:
bupengxiang
2023-05-26 11:41:41 +08:00
parent 5a2f1513ed
commit fddbfa7656
@@ -210,8 +210,10 @@ public class TodoTaskController {
String taskId = entry.getValue().get(0).get("id").toString(); String taskId = entry.getValue().get(0).get("id").toString();
if (busProcessName != null) { if (busProcessName != null) {
ReportEntity reportEntity = this.selectReport(busProcessName.getPrcType(),busProcessName.getDataId()); ReportEntity reportEntity = this.selectReport(busProcessName.getPrcType(),busProcessName.getDataId());
busProcessName.setConfidentialLevel(reportEntity.getConfidentialLevel()); if(reportEntity != null){
busProcessName.setPrivacyLevel(reportEntity.getPrivacyLevel()); busProcessName.setConfidentialLevel(reportEntity.getConfidentialLevel());
busProcessName.setPrivacyLevel(reportEntity.getPrivacyLevel());
}
busProcessName.setTaskId(taskId); busProcessName.setTaskId(taskId);
busProcessName.setTaskInfo(entry.getValue().get(0).get("name").toString()); busProcessName.setTaskInfo(entry.getValue().get(0).get("name").toString());
busProcessName.setTaskDefinitionKey(entry.getValue().get(0).get("taskDefinitionKey").toString()); busProcessName.setTaskDefinitionKey(entry.getValue().get(0).get("taskDefinitionKey").toString());