fix(测试跟踪): 测试计划状态显示问题

--bug=1017130 --user=宋昌昌 【测试跟踪】测试计划状态应该是已结束的时候显示了已完成 https://www.tapd.cn/55049933/s/1285140
This commit is contained in:
song-cc-rock 2022-11-01 15:32:40 +08:00 committed by jianxing
parent dd6e6bc8d6
commit 4649e95a7d
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class TestPlanController {
@MsAuditLog(module = OperLogModule.TRACK_TEST_PLAN, type = OperLogConstants.UPDATE, beforeEvent = "#msClass.getLogDetails(#planId)", content = "#msClass.getLogDetails(#planId)", msClass = TestPlanService.class)
public void editTestPlanStatus(@PathVariable String planId) {
checkPermissionService.checkTestPlanOwner(planId);
testPlanService.editTestPlanStatus(planId);
testPlanService.checkStatus(planId);
}
@PostMapping("/edit/report/config")