diff --git a/com.actionsoft.apps.coe.pal.batch/lib/com.actionsoft.apps.coe.pal.batch.jar b/com.actionsoft.apps.coe.pal.batch/lib/com.actionsoft.apps.coe.pal.batch.jar index 08e1f0f6..794f142a 100644 Binary files a/com.actionsoft.apps.coe.pal.batch/lib/com.actionsoft.apps.coe.pal.batch.jar and b/com.actionsoft.apps.coe.pal.batch/lib/com.actionsoft.apps.coe.pal.batch.jar differ diff --git a/com.actionsoft.apps.coe.pal.batch/src/com/actionsoft/apps/coe/pal/batch/web/BatchWeb.java b/com.actionsoft.apps.coe.pal.batch/src/com/actionsoft/apps/coe/pal/batch/web/BatchWeb.java index 13aef1c2..05ec85b4 100644 --- a/com.actionsoft.apps.coe.pal.batch/src/com/actionsoft/apps/coe/pal/batch/web/BatchWeb.java +++ b/com.actionsoft.apps.coe.pal.batch/src/com/actionsoft/apps/coe/pal/batch/web/BatchWeb.java @@ -355,16 +355,9 @@ public class BatchWeb extends ActionWeb { public String queryBatchCreateLog(String type, String logId, String path, String timer) { String content = ""; if (new File(path).exists()) { - if ("processList".equals(type)) {// 流程清单保存 - if (LogRealTimeCountCache.getCache().get(logId) == null) { - timer = ""; - } - } else if ("shapeList".equals(type)) {// 模型结构保存 - if (BatchCache.getCache().get(logId) == null) { - timer = ""; - } + if (LogRealTimeCountCache.getCache().get(logId) == null) { + timer = ""; } - content = LogUtil.getLogContent(new File(path)); } ResponseObject ro = ResponseObject.newOkResponse();