fix(修改系统参数): #1007539 解决修改系统参数时报错的问题

解决修改系统参数时报错的问题
This commit is contained in:
song-tianyang 2021-10-27 22:48:51 +08:00 committed by BugKing
parent 5912500560
commit 4a18fee706
2 changed files with 9 additions and 8 deletions

View File

@ -382,9 +382,8 @@ public class ApiTestEnvironmentService {
private String getSystemIdByProjectId(String projectId){
ProjectService projectService = CommonBeanFactory.getBean(ProjectService.class);
if(projectService != null){
Project project = projectService.getProjectById(projectId);
if(project != null){
project = projectService.checkSystemId(project);
return projectService.getSystemIdByProjectId(projectId);
}else {

View File

@ -412,6 +412,7 @@ public class ProjectService {
public Project getProjectById(String id) {
Project project = projectMapper.selectByPrimaryKey(id);
if(project != null){
String createUser = project.getCreateUser();
if (StringUtils.isNotBlank(createUser)) {
User user = userMapper.selectByPrimaryKey(createUser);
@ -419,6 +420,7 @@ public class ProjectService {
project.setCreateUser(user.getName());
}
}
}
return project;
}