fix(测试跟踪): 删除缺陷未删除关联关系
This commit is contained in:
parent
0ab8899820
commit
25e2cdc2c9
|
@ -37,9 +37,9 @@ public class TestCaseIssuesController {
|
||||||
issuesService.closeLocalIssue(id);
|
issuesService.closeLocalIssue(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/delete/{id}")
|
@PostMapping("/delete")
|
||||||
public void deleteIssue(@PathVariable String id) {
|
public void deleteIssue(@RequestBody IssuesRequest request) {
|
||||||
issuesService.deleteIssue(id);
|
issuesService.deleteIssue(request);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/tapd/user/{caseId}")
|
@GetMapping("/tapd/user/{caseId}")
|
||||||
|
|
|
@ -21,4 +21,10 @@ public class IssuesRequest {
|
||||||
* zentao bug 影响版本
|
* zentao bug 影响版本
|
||||||
*/
|
*/
|
||||||
private List<String> zentaoBuilds;
|
private List<String> zentaoBuilds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* issues id
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
private String caseId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
package io.metersphere.track.service;
|
package io.metersphere.track.service;
|
||||||
|
|
||||||
import io.metersphere.base.domain.Issues;
|
import io.metersphere.base.domain.*;
|
||||||
import io.metersphere.base.domain.Project;
|
|
||||||
import io.metersphere.base.domain.ServiceIntegration;
|
|
||||||
import io.metersphere.base.domain.TestCaseWithBLOBs;
|
|
||||||
import io.metersphere.base.mapper.IssuesMapper;
|
import io.metersphere.base.mapper.IssuesMapper;
|
||||||
|
import io.metersphere.base.mapper.TestCaseIssuesMapper;
|
||||||
import io.metersphere.commons.constants.IssuesManagePlatform;
|
import io.metersphere.commons.constants.IssuesManagePlatform;
|
||||||
import io.metersphere.commons.constants.NoticeConstants;
|
import io.metersphere.commons.constants.NoticeConstants;
|
||||||
import io.metersphere.commons.user.SessionUser;
|
import io.metersphere.commons.user.SessionUser;
|
||||||
|
@ -43,6 +41,8 @@ public class IssuesService {
|
||||||
private IssuesMapper issuesMapper;
|
private IssuesMapper issuesMapper;
|
||||||
@Resource
|
@Resource
|
||||||
private NoticeSendService noticeSendService;
|
private NoticeSendService noticeSendService;
|
||||||
|
@Resource
|
||||||
|
private TestCaseIssuesMapper testCaseIssuesMapper;
|
||||||
|
|
||||||
public void testAuth(String platform) {
|
public void testAuth(String platform) {
|
||||||
AbstractIssuePlatform abstractPlatform = IssueFactory.createPlatform(platform, new IssuesRequest());
|
AbstractIssuePlatform abstractPlatform = IssueFactory.createPlatform(platform, new IssuesRequest());
|
||||||
|
@ -202,8 +202,14 @@ public class IssuesService {
|
||||||
return platform.getPlatformUser();
|
return platform.getPlatformUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void deleteIssue(String id) {
|
public void deleteIssue(IssuesRequest request) {
|
||||||
|
String caseId = request.getCaseId();
|
||||||
|
String id = request.getId();
|
||||||
issuesMapper.deleteByPrimaryKey(id);
|
issuesMapper.deleteByPrimaryKey(id);
|
||||||
|
|
||||||
|
TestCaseIssuesExample example = new TestCaseIssuesExample();
|
||||||
|
example.createCriteria().andTestCaseIdEqualTo(caseId).andIssuesIdEqualTo(id);
|
||||||
|
testCaseIssuesMapper.deleteByExample(example);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String getIssuesContext(SessionUser user, IssuesRequest issuesRequest, String type) {
|
private static String getIssuesContext(SessionUser user, IssuesRequest issuesRequest, String type) {
|
||||||
|
|
|
@ -664,8 +664,9 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
deleteIssue(row) {
|
deleteIssue(row) {
|
||||||
this.result = this.$get("/issues/delete/" + row.id, () => {
|
let caseId = this.testCase.caseId;
|
||||||
this.getIssues(this.testCase.caseId);
|
this.result = this.$post("/issues/delete", {id: row.id, caseId: caseId}, () => {
|
||||||
|
this.getIssues(caseId);
|
||||||
this.$success(this.$t('commons.delete_success'));
|
this.$success(this.$t('commons.delete_success'));
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue