修改流程架构
This commit is contained in:
parent
a50b691fe2
commit
83226d20bc
@ -8095,14 +8095,16 @@ public class CoeProcessLevelWeb extends ActionWeb {
|
|||||||
// 一级架构默认值处理
|
// 一级架构默认值处理
|
||||||
int index=1;
|
int index=1;
|
||||||
if(repositoryPathData.size()>0){
|
if(repositoryPathData.size()>0){
|
||||||
for(int i=0;i<repositoryPathData.size();i++){
|
for(int i=1;i<repositoryPathData.size();i++){
|
||||||
|
|
||||||
String name1=((JSONObject) repositoryPathData.get(i)).getString("name");
|
String name1=((JSONObject) repositoryPathData.get(i)).getString("name");
|
||||||
if(UtilString.isNotEmpty(name1)){
|
if(repositoryPathData.get(i)!=""){
|
||||||
propertyDao.updatePropertyByPropertyId(model.getId(), "Process_Architecture_L"+index, name1);
|
if(UtilString.isNotEmpty(name1)){
|
||||||
index++;
|
propertyDao.updatePropertyByPropertyId(model.getId(), "Process_Architecture_L"+index, name1);
|
||||||
|
index++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8133,7 +8135,7 @@ public class CoeProcessLevelWeb extends ActionWeb {
|
|||||||
// 获取当前文件路径
|
// 获取当前文件路径
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuffer sb = new StringBuffer();
|
||||||
if(repositoryPathData.size()>0){
|
if(repositoryPathData.size()>0){
|
||||||
for(int i=0;i<repositoryPathData.size();i++){
|
for(int i=1;i<repositoryPathData.size();i++){
|
||||||
String name=((JSONObject) repositoryPathData.get(i)).getString("name");
|
String name=((JSONObject) repositoryPathData.get(i)).getString("name");
|
||||||
sb.append(name).append("\\");
|
sb.append(name).append("\\");
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user