style(测试计划): 修改测试计划默认模块的名字

This commit is contained in:
Jianguo-Genius 2024-05-17 18:48:12 +08:00 committed by 刘瑞斌
parent f43e7a96d3
commit cca651fa26
5 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
test_plan.test_plan=测试计划
unplanned.plan=未规划计划
test_plan.test_plan_group=测试计划组
test_plan.id.not_blank=测试计划id不能为空
test_plan.project_id.length_range=测试计划所属项目id长度过长

View File

@ -1,4 +1,5 @@
test_plan.test_plan=Test plan
unplanned.plan=未规划计划
test_plan.test_plan_group=Test plan group
test_plan.id.not_blank=Test plan id cannot be empty
test_plan.project_id.length_range=Test plan project id length too long

View File

@ -1,4 +1,5 @@
test_plan.test_plan=测试计划
unplanned.plan=Unplanned plan
test_plan.test_plan_group=测试计划组
test_plan.id.not_blank=测试计划id不能为空
test_plan.project_id.length_range=测试计划所属项目id长度过长

View File

@ -1,4 +1,5 @@
test_plan.test_plan=測試計劃
unplanned.plan=未規劃計劃
test_plan.test_plan_group=測試計劃組
test_plan.id.not_blank=測試計劃id不能為空
test_plan.project_id.length_range=測試計劃所屬項目id長度過長

View File

@ -47,7 +47,7 @@ public class TestPlanModuleService extends ModuleTreeService {
public List<BaseTreeNode> getTree(String projectId) {
List<BaseTreeNode> fileModuleList = extTestPlanModuleMapper.selectBaseByProjectId(projectId);
return super.buildTreeAndCountResource(fileModuleList, true, Translator.get("default.module"));
return super.buildTreeAndCountResource(fileModuleList, true, Translator.get("unplanned.plan"));
}
public List<BaseTreeNode> getTreeOnlyIdsAndResourceCount(String projectId, List<ModuleCountDTO> moduleCountDTOList) {