REQ-3502: 过滤流程按钮
This commit is contained in:
parent
34c3645633
commit
8399113a5f
@ -105,7 +105,11 @@ public class TodoSyncCardService {
|
||||
request.setBizCode(todo.getBizCode());
|
||||
request.setIdempotentCode(todo.getIdentityCode());
|
||||
request.setSubBizCode(todo.getSubBizCode());
|
||||
request.setSender(PeerPerson.create(business.getPromoterPersonId(), business.getOuId(), business.getOrgId()));
|
||||
Long promoterPersonId = business.getPromoterPersonId();
|
||||
if (promoterPersonId == null) promoterPersonId = 0L;
|
||||
Long ouId = business.getOuId();
|
||||
if (ouId == null) ouId = 0L;
|
||||
request.setSender(PeerPerson.create(promoterPersonId, ouId, business.getOrgId()));
|
||||
request.setReceivers(Sets.newHashSet(PeerPerson.create(
|
||||
todo.getExecutorPersonId(), todo.getOuId(), todo.getOrgId())));
|
||||
JSONObject bizParam = todo.bizParam();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user