Просмотр исходного кода

Merge branch 'FIXBUG_task_assign_change' of wy/zdqy_ibps into matser

吴懿 2 лет назад
Родитель
Сommit
f596247710

+ 1 - 1
ibps-bpmn-root/modules/bpmn-biz/src/main/java/com/lc/ibps/bpmn/domain/BpmTask.java

@@ -316,7 +316,7 @@ public class BpmTask extends AbstractDomain<String, BpmTaskPo>{
 		Set<Entry<String, List<BpmIdentity>>> entrySet = agentIdentityMap.entrySet();
 		
 		List<BpmIdentity> userList = bpmIdentExtractService().extractBpmIdentity(identityList);
-		boolean delegatorVisible = AppUtil.getProperty("bpm.delegator.visible", Boolean.class, false);
+		boolean delegatorVisible = Boolean.valueOf(AppUtil.getProperty("bpm.delegator.visible", "false"));
 		for(Entry<String, List<BpmIdentity>> entry : entrySet){
 			// 去除看到任务的人
 			if(!delegatorVisible) {