fix(项目管理-初始化项目): #5402 新建项目时,将负责人加入项目成员中

This commit is contained in:
wanjia 2024-08-22 14:34:23 +08:00
parent e8487aed64
commit ea54c00662
1 changed files with 1 additions and 0 deletions

View File

@ -433,6 +433,7 @@ public class PmsCommonAsyncServiceImpl implements IPmsCommonAsyncService {
String name = "项目";
pmsProjectInputVo.setProjectName(String.format(INITIALIZE_NAME, name, name));
pmsProjectInputVo.setProjectAssigneeId(creatorGitLinkUserId);
pmsProjectInputVo.setPmsProjectMemberIds(String.valueOf(creatorGitLinkUserId));
return (long) pmsProjectService.insertPmsProject(pmsProjectInputVo);
}
}