bug67735修改
This commit is contained in:
+4
-4
@@ -1744,17 +1744,17 @@ public class AuthDummyInventoryInfoEOServiceImpl extends ServiceImpl<AuthDummyIn
|
||||
String title = "";
|
||||
if(CutEnum.CN.getValue().equals(authDummyInventoryInfoEO.getCut())){
|
||||
title = "*类别,*检验项目,*配置项,*WVTA ID," +
|
||||
"*编号,*责任领域,交付物模板,*交付物类型,";
|
||||
"*编号,*责任领域,*交付物类型,交付物模板,";
|
||||
}else{
|
||||
title = "*Category,*Inspection Items,*Configuration Item,*WVTA ID," +
|
||||
"*Number,*Responsible Field,Deliverable Template,*Deliverable Type,";
|
||||
"*Number,*Responsible Field,*Deliverable Type,Deliverable Template,";
|
||||
}
|
||||
List<String> list = Arrays.asList(title.split(","));
|
||||
int index = 0;
|
||||
if(CutEnum.CN.getValue().equals(authDummyInventoryInfoEO.getCut())){
|
||||
index = list.indexOf("*交付物类型") + 1;
|
||||
index = list.indexOf("交付物模板") + 1;
|
||||
}else{
|
||||
index = list.indexOf("*Deliverable Type") + 1;
|
||||
index = list.indexOf("Deliverable Template") + 1;
|
||||
}
|
||||
|
||||
//创建临时文件夹
|
||||
|
||||
Reference in New Issue
Block a user