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