diff --git a/com.actionsoft.apps.coe.pal.processlist/lib/com.actionsoft.apps.coe.pal.processlist.jar b/com.actionsoft.apps.coe.pal.processlist/lib/com.actionsoft.apps.coe.pal.processlist.jar index 3f959206..4c7674b9 100644 Binary files a/com.actionsoft.apps.coe.pal.processlist/lib/com.actionsoft.apps.coe.pal.processlist.jar and b/com.actionsoft.apps.coe.pal.processlist/lib/com.actionsoft.apps.coe.pal.processlist.jar differ diff --git a/com.actionsoft.apps.coe.pal.processlist/src/com/actionsoft/apps/coe/pal/processlist/web/PALRepositoryListWeb.java b/com.actionsoft.apps.coe.pal.processlist/src/com/actionsoft/apps/coe/pal/processlist/web/PALRepositoryListWeb.java index c5b7b759..cdb8da70 100644 --- a/com.actionsoft.apps.coe.pal.processlist/src/com/actionsoft/apps/coe/pal/processlist/web/PALRepositoryListWeb.java +++ b/com.actionsoft.apps.coe.pal.processlist/src/com/actionsoft/apps/coe/pal/processlist/web/PALRepositoryListWeb.java @@ -1201,11 +1201,11 @@ public class PALRepositoryListWeb extends ActionWeb { tempArr.add(obj); } ConsolePrinter.info("流程清单扩展列信息[" + tempArr.toJSONString() + "]"); - ConsolePrinter.info("流程清单表头信息[" + tableHeadConfigArr.toJSONString() + "]"); // 获取符合条件数据的maxLevel int maxLevel = getMaxLevelByList(palList); // 获取Excel表头信息 List excelTableHeadList = getExcelTableHeadData(wsId, palList, maxLevel, tempArr); + ConsolePrinter.info("流程清单表头信息 " + excelTableHeadList.toString().replaceAll("\n","")); short column = columnIndex; // 设置默认的两行 通栏 rowIndex = getExcelHeader(wb, sheet, rowIndex, column, excelTableHeadList, wsId); @@ -1220,6 +1220,8 @@ public class PALRepositoryListWeb extends ActionWeb { sheet.setColumnWidth(column, 1500); } else if (i == maxLevel + 1) {// 空列 sheet.setColumnWidth(column, 9200); + } else if (i == maxLevel + 2){ // 模型名称列 + sheet.setColumnWidth(column, 8000); } else {// 表格列 sheet.setColumnWidth(column, 4000); }