refactor: 修改保存用例时返回实体
This commit is contained in:
parent
749ca13ed9
commit
dbcc791559
|
@ -262,7 +262,7 @@ public class TestCaseService {
|
||||||
return testCaseMapper.selectByPrimaryKey(testCaseId);
|
return testCaseMapper.selectByPrimaryKey(testCaseId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int editTestCase(TestCaseWithBLOBs testCase) {
|
public TestCaseWithBLOBs editTestCase(TestCaseWithBLOBs testCase) {
|
||||||
checkTestCustomNum(testCase);
|
checkTestCustomNum(testCase);
|
||||||
testCase.setUpdateTime(System.currentTimeMillis());
|
testCase.setUpdateTime(System.currentTimeMillis());
|
||||||
// 更新数据
|
// 更新数据
|
||||||
|
@ -284,7 +284,8 @@ public class TestCaseService {
|
||||||
testCase.setRefId(oldTestCase.getRefId());
|
testCase.setRefId(oldTestCase.getRefId());
|
||||||
testCaseMapper.insertSelective(testCase);
|
testCaseMapper.insertSelective(testCase);
|
||||||
}
|
}
|
||||||
return testCaseMapper.updateByPrimaryKeySelective(testCase);
|
testCaseMapper.updateByPrimaryKeySelective(testCase);
|
||||||
|
return testCaseMapper.selectByPrimaryKey(testCase.getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
public TestCaseWithBLOBs checkTestCaseExist(TestCaseWithBLOBs testCase) {
|
public TestCaseWithBLOBs checkTestCaseExist(TestCaseWithBLOBs testCase) {
|
||||||
|
@ -1545,9 +1546,7 @@ public class TestCaseService {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
this.setNode(request);
|
this.setNode(request);
|
||||||
editTestCase(request);
|
return editTestCase(request);
|
||||||
//saveFollows(request.getId(), request.getFollows());
|
|
||||||
return testCaseWithBLOBs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String editTestCase(EditTestCaseRequest request, List<MultipartFile> files) {
|
public String editTestCase(EditTestCaseRequest request, List<MultipartFile> files) {
|
||||||
|
|
|
@ -748,9 +748,6 @@ export default {
|
||||||
if (callback) {
|
if (callback) {
|
||||||
callback(this);
|
callback(this);
|
||||||
}
|
}
|
||||||
if (hasLicense()) {
|
|
||||||
this.getVersionHistory();
|
|
||||||
}
|
|
||||||
// 保存用例后刷新附件
|
// 保存用例后刷新附件
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -953,7 +950,7 @@ export default {
|
||||||
create(row) {
|
create(row) {
|
||||||
// 创建新版本
|
// 创建新版本
|
||||||
this.form.versionId = row.id;
|
this.form.versionId = row.id;
|
||||||
this.saveCase();
|
this.saveCase(this.getVersionHistory);
|
||||||
},
|
},
|
||||||
del(row) {
|
del(row) {
|
||||||
let that = this;
|
let that = this;
|
||||||
|
|
Loading…
Reference in New Issue