style(测试计划): 修改测试计划默认模块的名字
This commit is contained in:
parent
f43e7a96d3
commit
cca651fa26
|
@ -1,4 +1,5 @@
|
||||||
test_plan.test_plan=测试计划
|
test_plan.test_plan=测试计划
|
||||||
|
unplanned.plan=未规划计划
|
||||||
test_plan.test_plan_group=测试计划组
|
test_plan.test_plan_group=测试计划组
|
||||||
test_plan.id.not_blank=测试计划id不能为空
|
test_plan.id.not_blank=测试计划id不能为空
|
||||||
test_plan.project_id.length_range=测试计划所属项目id长度过长
|
test_plan.project_id.length_range=测试计划所属项目id长度过长
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
test_plan.test_plan=Test plan
|
test_plan.test_plan=Test plan
|
||||||
|
unplanned.plan=未规划计划
|
||||||
test_plan.test_plan_group=Test plan group
|
test_plan.test_plan_group=Test plan group
|
||||||
test_plan.id.not_blank=Test plan id cannot be empty
|
test_plan.id.not_blank=Test plan id cannot be empty
|
||||||
test_plan.project_id.length_range=Test plan project id length too long
|
test_plan.project_id.length_range=Test plan project id length too long
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
test_plan.test_plan=测试计划
|
test_plan.test_plan=测试计划
|
||||||
|
unplanned.plan=Unplanned plan
|
||||||
test_plan.test_plan_group=测试计划组
|
test_plan.test_plan_group=测试计划组
|
||||||
test_plan.id.not_blank=测试计划id不能为空
|
test_plan.id.not_blank=测试计划id不能为空
|
||||||
test_plan.project_id.length_range=测试计划所属项目id长度过长
|
test_plan.project_id.length_range=测试计划所属项目id长度过长
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
test_plan.test_plan=測試計劃
|
test_plan.test_plan=測試計劃
|
||||||
|
unplanned.plan=未規劃計劃
|
||||||
test_plan.test_plan_group=測試計劃組
|
test_plan.test_plan_group=測試計劃組
|
||||||
test_plan.id.not_blank=測試計劃id不能為空
|
test_plan.id.not_blank=測試計劃id不能為空
|
||||||
test_plan.project_id.length_range=測試計劃所屬項目id長度過長
|
test_plan.project_id.length_range=測試計劃所屬項目id長度過長
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class TestPlanModuleService extends ModuleTreeService {
|
||||||
|
|
||||||
public List<BaseTreeNode> getTree(String projectId) {
|
public List<BaseTreeNode> getTree(String projectId) {
|
||||||
List<BaseTreeNode> fileModuleList = extTestPlanModuleMapper.selectBaseByProjectId(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) {
|
public List<BaseTreeNode> getTreeOnlyIdsAndResourceCount(String projectId, List<ModuleCountDTO> moduleCountDTOList) {
|
||||||
|
|
Loading…
Reference in New Issue