fix(测试计划): 修复子测试计划实际起止时间为空的问题

--bug=1042708 --user=宋天阳 【测试计划】计划实际起止时间为空 https://www.tapd.cn/55049933/s/1533854
This commit is contained in:
Jianguo-Genius 2024-06-21 16:47:52 +08:00 committed by Craftsman
parent 4744b25041
commit 6587f3c225
2 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,8 @@
t.module_id as moduleId, t.module_id as moduleId,
t.type, t.type,
t.description, t.description,
t.actual_start_time AS actualStartTime,
t.actual_end_time AS actualEndTime,
t.pos, t.pos,
t.group_id AS parent, t.group_id AS parent,
t.tags t.tags

View File

@ -78,6 +78,7 @@ public class TestPlanManagementService {
public List<TestPlan> groupList(String projectId) { public List<TestPlan> groupList(String projectId) {
TestPlanExample example = new TestPlanExample(); TestPlanExample example = new TestPlanExample();
example.createCriteria().andTypeEqualTo(TestPlanConstants.TEST_PLAN_TYPE_GROUP).andProjectIdEqualTo(projectId).andStatusNotEqualTo(TestPlanConstants.TEST_PLAN_STATUS_ARCHIVED); example.createCriteria().andTypeEqualTo(TestPlanConstants.TEST_PLAN_TYPE_GROUP).andProjectIdEqualTo(projectId).andStatusNotEqualTo(TestPlanConstants.TEST_PLAN_STATUS_ARCHIVED);
example.setOrderByClause("num desc");
return testPlanMapper.selectByExample(example); return testPlanMapper.selectByExample(example);
} }