流程阅览显示修改
This commit is contained in:
parent
5614c61d8b
commit
acb58c0185
@ -88,7 +88,7 @@ public class SynchronousPortJob implements IJob {
|
||||
|
||||
Connection open = DBSql.open();
|
||||
try {
|
||||
orgdepartmentList = DBSql.getMaps(open, "select DEPARTMENTNAME,ID,LAYER,PARENTDEPARTMENTID,ORDERINDEX from ORGDEPARTMENT where Closed=0 ");
|
||||
orgdepartmentList = DBSql.getMaps(open, "select DEPARTMENTNAME,ID,LAYER,PARENTDEPARTMENTID,ORDERINDEX from ORGDEPARTMENT where Closed=0 ");
|
||||
|
||||
|
||||
RowMap parentModel=DBSql.getMap("SELECT ID FROM APP_ACT_COE_PAL_REPOSITORY WHERE PLNAME='内蒙古伊利实业集团股份有限公司' and PLMETHODID='org.normal'");
|
||||
|
||||
@ -1470,6 +1470,16 @@ function initProcessDesc() {
|
||||
var b='';
|
||||
for(var i = 1; i <= length; i++) {
|
||||
var obj = processDesc[i];
|
||||
|
||||
if(obj.name=="是否发布"){
|
||||
continue;
|
||||
}
|
||||
if(obj.name=="ARIS地址"){
|
||||
continue;
|
||||
}
|
||||
if(obj.name=="ARIS流程名称"){
|
||||
continue;
|
||||
}
|
||||
//判断如果为相关文件/支持文件显示在右侧区域
|
||||
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
||||
b += '<table class="awsui-table">';
|
||||
@ -1487,6 +1497,12 @@ function initProcessDesc() {
|
||||
}
|
||||
|
||||
}else{
|
||||
if(obj.name=="前置流程"){
|
||||
obj.name="上游";
|
||||
}
|
||||
if(obj.name=="后置流程"){
|
||||
obj.name="下游";
|
||||
}
|
||||
t += '<tr class="borderbottom">';
|
||||
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
||||
|
||||
|
||||
@ -456,7 +456,6 @@ function openDialog(obj) {
|
||||
$("#attribute-table-window2").dialog({
|
||||
title: tableName,
|
||||
draggable: true,
|
||||
height:50,
|
||||
buttons : [{
|
||||
text : '确定',
|
||||
cls : "blue",
|
||||
@ -1482,6 +1481,17 @@ function initProcessDesc() {
|
||||
var b='';
|
||||
for(var i = 1; i <= length; i++) {
|
||||
var obj = processDesc[i];
|
||||
|
||||
if(obj.name=="是否发布"){
|
||||
continue;
|
||||
}
|
||||
if(obj.name=="ARIS地址"){
|
||||
continue;
|
||||
}
|
||||
if(obj.name=="ARIS流程名称"){
|
||||
continue;
|
||||
}
|
||||
|
||||
//判断如果为相关文件/支持文件显示在右侧区域
|
||||
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
||||
b += '<table class="awsui-table">';
|
||||
@ -1499,6 +1509,14 @@ function initProcessDesc() {
|
||||
}
|
||||
|
||||
}else{
|
||||
|
||||
if(obj.name=="前置流程"){
|
||||
obj.name="上游";
|
||||
}
|
||||
if(obj.name=="后置流程"){
|
||||
obj.name="下游";
|
||||
}
|
||||
|
||||
t += '<tr class="borderbottom">';
|
||||
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user