REQ-3502: 按钮排序
This commit is contained in:
parent
b4a59c2c67
commit
cb618ced63
@ -47,6 +47,8 @@ public class TodoSyncCardService {
|
|||||||
private static final String TODO_IDENTITY_CODE_BIZ_PARAM_KEY = "todoIdentityCode";
|
private static final String TODO_IDENTITY_CODE_BIZ_PARAM_KEY = "todoIdentityCode";
|
||||||
private static final String TODO_TYPE_BIZ_PARAM_KEY = "todoType";
|
private static final String TODO_TYPE_BIZ_PARAM_KEY = "todoType";
|
||||||
private static final String TODO_CATEGORY_BIZ_PARAM_KEY = "todoCategory";
|
private static final String TODO_CATEGORY_BIZ_PARAM_KEY = "todoCategory";
|
||||||
|
private static final String TODO_EXECUTOR_WORKSPACE_ID_BIZ_PARAM_KEY = "todoExecutorWorkspaceId";
|
||||||
|
private static final String TODO_PROMOTER_WORKSPACE_ID_BIZ_PARAM_KEY = "todoPromoterWorkspaceId";
|
||||||
|
|
||||||
private final TodoDao todoDao;
|
private final TodoDao todoDao;
|
||||||
private final TodoBusinessDao todoBusinessDao;
|
private final TodoBusinessDao todoBusinessDao;
|
||||||
@ -118,6 +120,8 @@ public class TodoSyncCardService {
|
|||||||
cardExtInfo.addExtInfo(TODO_IDENTITY_CODE_BIZ_PARAM_KEY, todo.getIdentityCode());
|
cardExtInfo.addExtInfo(TODO_IDENTITY_CODE_BIZ_PARAM_KEY, todo.getIdentityCode());
|
||||||
cardExtInfo.addExtInfo(TODO_TYPE_BIZ_PARAM_KEY, todo.getType().getCode());
|
cardExtInfo.addExtInfo(TODO_TYPE_BIZ_PARAM_KEY, todo.getType().getCode());
|
||||||
cardExtInfo.addExtInfo(TODO_CATEGORY_BIZ_PARAM_KEY, business.getBizCategory().getCode());
|
cardExtInfo.addExtInfo(TODO_CATEGORY_BIZ_PARAM_KEY, business.getBizCategory().getCode());
|
||||||
|
cardExtInfo.addExtInfo(TODO_EXECUTOR_WORKSPACE_ID_BIZ_PARAM_KEY, todo.getReceiverWorkspaceId());
|
||||||
|
cardExtInfo.addExtInfo(TODO_PROMOTER_WORKSPACE_ID_BIZ_PARAM_KEY, business.getOrgId());
|
||||||
request.setBizParam(bizParam);
|
request.setBizParam(bizParam);
|
||||||
request.setRouterParam(todo.routerParam());
|
request.setRouterParam(todo.routerParam());
|
||||||
request.setReturnCards(true);
|
request.setReturnCards(true);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user