This commit is contained in:
hanjian
2024-08-14 15:17:51 +08:00
parent 20a221c1a2
commit b610f94b2e
3483 changed files with 650965 additions and 0 deletions

View File

@@ -0,0 +1,186 @@
<%@page import="com.blueland.bpm.log.model.*" %>
<%@page import="com.blueland.bpm.common.page.*" %>
<%@page import="com.blueland.bpm.common.util.*"%>
<%@page import="java.util.*" %>
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib tagdir="/WEB-INF/tags/simpletable" prefix="simpletable"%>
<%@ include file="/commons/taglibs.jsp" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%@ include file="/commons/meta.jsp" %>
<base href="<%=basePath%>">
<title>流程错误日志</title>
<link href="${ctx}/resource/js/plugins/loadmask/jquery.loadmask.css" rel="stylesheet" type="text/css" />
<script type='text/javascript' src='${ctx}/resource/js/plugins/loadmask/jquery.loadmask.js'></script>
<link href="${ctx_js_plugins}/simpletable/simpletable.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="${ctx_js_plugins}/simpletable/simpletable.js"></script>
<script type="text/javascript" >
$(document).ready(function() {
// 分页需要依赖的初始化动作
window.simpleTable = new SimpleTable('queryForm','${page.thisPageNumber}','${page.pageSize}','${pageRequest.sortColumns}');
});
function changeRetryStatus(pelogId){
if(window.confirm('确定执行[已处理]操作?')){
setMask("main-container");
jQuery.ajax({
type: "POST",
url: "${ctx}/processErrorLog/disposeErrorLog.do",
data: {pelogId:pelogId},
success: function(resp)
{
if(resp=="ERROR"){
$("#main-container").unmask();
alert("处理失败!");
window.location.reload();
}else{
$("#main-container").unmask();
alert("处理成功!");
window.location.reload();
}
}
});
}
}
</script>
</head>
<body>
<%@ include file="/commons/messages.jsp" %>
<form id="queryForm" name="queryForm" action="${ctx}/processErrorLog/errorList.do" method="post" style="display: inline;">
<input type="hidden" id="flag" name="flag" value="${flag}"/>
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-heading">
<h8>流程错误日志</h8>
</div>
<div class="panel-body " >
<div class="form-group well well-sm" style="margin-bottom: 2px;">
<table border="0" cellspacing="0" cellpadding="0"
class="table-search form-table">
<tr>
<td>处理状态:</td>
<td>
<select name="retryStatus" id="retryStatus">
<option value="n" ${query.retryStatus=='n'?'selected':''}>未处理</option>
<option value="y" ${query.retryStatus=='y'?'selected':''}>已处理</option>
</select>
</td>
<td>流程定义名称:</td>
<td>
<input class="input" value="${query.processDefName}" id="processDefName" name="processDefName" maxlength="500" />
</td>
<td>流程实例ID</td>
<td>
<input class="input" value="${query.processInstanceId}" id="processInstanceId" name="processInstanceId" maxlength="50" />
</td>
<td>记录时间:</td>
<td colspan="2">
从<input class="input" style="width: 80px;" value="<fmt:formatDate value="${query.startPelogTime}" pattern="yyyy-MM-dd"/>" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="startPelogTime" name="startPelogTime" />
到<input class="input" style="width: 80px;" value="<fmt:formatDate value="${query.endPelogTime}" pattern="yyyy-MM-dd"/>" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="endPelogTime" name="endPelogTime" />
</td>
</tr>
<tr>
<!-- <td>记录时间:</td>
<td>
<input class="input" value="${query.pelogCreateTimeString}" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="pelogCreateTimeString" name="pelogCreateTimeString" />
</td>-->
<td>流程标题:</td>
<td>
<input class="input" value="${query.processTitle}" id="processTitle" name="processTitle" maxlength="500" />
</td>
<td>流程发送人:</td>
<td>
<input class="input" value="${query.creator}" id="creator" name="creator" maxlength="50" />
</td>
<c:if test="${ebpmAdmin}">
<td>应用系统:</td>
<td>
<input class="input" value="${query.appId}" id="appId" name="appId" maxlength="50" />
</td>
</c:if>
<td colspan="2">
<button type="submit" class="btn btn-xs btn-primary">
查&nbsp;&nbsp;询
<i class="ace-icon fa fa-search bigger-110"></i>
</button>
</td>
</tr>
</table>
</div>
<div class="row">
<div class="col-xs-12">
<div class="table-responsive">
<div style="width: 100%;overflow: auto;">
<table style=" width: inherit;max-width: 600%;table-layout: fixed;" id="sample-table-1"
class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th style="width: 150px;">流程定义名称</th>
<th >流程实例ID</th>
<th >流程标题</th>
<th >发送人</th>
<th >接收人</th>
<th >操作类型</th>
<th style="width: 150px" sortColumn="pelogCreateTime" >记录时间</th>
<c:if test="${ebpmAdmin}">
<th >应用系统</th>
</c:if>
<th style="width: 90px">操作</th>
</tr>
</thead>
<tbody>
<c:forEach items="${page.result}" var="item" varStatus="status">
<tr class="${status.count % 2 == 0 ? 'odd' : 'even'}">
<!-- <td><input type="checkbox" name="items" value="pelogId=${item.pelogId}&"></td> -->
<td class="td" title="${item.processDefName}">${item.processDefName}&nbsp;</td>
<td class="td" title="${item.processInstanceId}">${item.processInstanceId}&nbsp;</td>
<td class="td" title="${item.processTitle}">${item.processTitle}&nbsp;</td>
<td class="td" title="${item.creator}">${item.creator}&nbsp;</td>
<td class="td" title="${item.receivers}">${item.receivers}&nbsp;</td>
<td class="td" title="${item.actionTypeVal}">${item.actionTypeVal}&nbsp;</td>
<td>${item.pelogCreateTimeString}&nbsp;</td>
<c:if test="${ebpmAdmin}">
<td>${item.appId}</td>
</c:if>
<td>
<a href="${ctx}/processErrorLog/showError.do?pelogId=${item.pelogId}&">查看</a>&nbsp;&nbsp;<br/>
<c:if test="${item.retryStatus == 'n' }">
<a href="javascript:void();" onclick="changeRetryStatus('${item.pelogId}');">已处理</a>&nbsp;&nbsp;<br/>
<a href="${ctx}/processErrorLog/retryVeiw.do?pelogId=${item.pelogId}&">消息重发</a>&nbsp;&nbsp;<br/>
</c:if>
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
<simpletable:pageToolbar page="${page}">
</simpletable:pageToolbar>
</div>
<!-- /.table-responsive -->
</div>
<!-- /span -->
</div>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@@ -0,0 +1,153 @@
<%@page import="com.blueland.bpm.log.model.*" %>
<%@page import="com.blueland.bpm.common.page.*" %>
<%@page import="com.blueland.bpm.common.util.*"%>
<%@page import="java.util.*" %>
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib tagdir="/WEB-INF/tags/simpletable" prefix="simpletable"%>
<%@ include file="/commons/taglibs.jsp" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%@ include file="/commons/meta.jsp" %>
<base href="<%=basePath%>">
<title>流程错误日志</title>
<link href="${ctx_js_plugins}/simpletable/simpletable.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="${ctx_js_plugins}/simpletable/simpletable.js"></script>
<script type="text/javascript" >
$(document).ready(function() {
// 分页需要依赖的初始化动作
window.simpleTable = new SimpleTable('queryForm','${page.thisPageNumber}','${page.pageSize}','${pageRequest.sortColumns}');
});
</script>
</head>
<body>
<%@ include file="/commons/messages.jsp" %>
<form id="queryForm" name="queryForm" action="${ctx}/processErrorLog/infoList.do" method="get" style="display: inline;">
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-heading">
<h8>流程运行日志</h8>
</div>
<div class="panel-body">
<div class="form-group well well-sm" style="margin-bottom: 2px;">
<table border="0" cellspacing="0" cellpadding="0"
class="table-search">
<tr>
<td>流程定义名称:</td>
<td>
<input class="input" value="${query.processDefName}" id="processDefName" name="processDefName" maxlength="500" />
</td>
<td>流程实例ID</td>
<td>
<input class="input" value="${query.processInstanceId}" id="processInstanceId" name="processInstanceId" maxlength="50" />
</td>
<td>记录时间:</td>
<td colspan="2">
从<input class="input" value="<fmt:formatDate value="${query.startPelogTime}" pattern="yyyy-MM-dd"/>" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="startPelogTime" name="startPelogTime" />
到<input class="input" value="<fmt:formatDate value="${query.endPelogTime}" pattern="yyyy-MM-dd"/>" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="endPelogTime" name="endPelogTime" />
</td>
<td >
<button type="submit" class="btn btn-xs btn-primary">
查&nbsp;&nbsp;询
<i class="ace-icon fa fa-search bigger-110"></i>
</button>
</td>
</tr>
<tr>
<td>流程标题:</td>
<td>
<input class="input" value="${query.processTitle}" id="processTitle" name="processTitle" maxlength="500" />
</td>
<td>流程发送人:</td>
<td>
<input class="input" value="${query.creator}" id="creator" name="creator" maxlength="50" />
</td>
<!-- <td>记录时间:</td>
<td>
<input class="input" value="${query.pelogCreateTimeString}" onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})" id="pelogCreateTimeString" name="pelogCreateTimeString" />
</td>-->
<c:if test="${ebpmAdmin}">
<td>应用系统:</td>
<td>
<input class="input" value="${query.appId}" id="appId" name="appId" maxlength="50" />
</td>
</c:if>
</tr>
</table>
</div>
<div class="row">
<div class="col-xs-12">
<div class="table-responsive">
<div style="width: 100%;overflow: auto;">
<table style=" width: inherit;max-width: 600%;table-layout: fixed;" id="sample-table-1"
class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th style="width: 150px;">流程定义名称</th>
<th >流程实例ID</th>
<th >流程标题</th>
<th >发送人</th>
<th >接收人</th>
<th >操作类型</th>
<th style="width: 150px" sortColumn="pelogCreateTime" >记录时间</th>
<c:if test="${ebpmAdmin}">
<th >应用系统</th>
</c:if>
<th >耗时ms</th>
<th style="width: 90px">操作</th>
<!--<th style="width:25px;"><input type="checkbox" onclick="setAllCheckboxState('items',this.checked)"></th>
排序时为th增加sortColumn即可,new SimpleTable('sortColumns')会为tableHeader自动增加排序功能; -->
</tr>
</thead>
<tbody>
<c:forEach items="${page.result}" var="item" varStatus="status">
<tr class="${status.count % 2 == 0 ? 'odd' : 'even'}">
<!-- <td><input type="checkbox" name="items" value="pelogId=${item.pelogId}&"></td> -->
<td class="td" title="${item.processDefName}">${item.processDefName}&nbsp;</td>
<td class="td" title="${item.processInstanceId}">${item.processInstanceId}&nbsp;</td>
<td class="td" title="${item.processTitle}">${item.processTitle}&nbsp;</td>
<td class="td" title="${item.creator}">${item.creator}&nbsp;</td>
<td class="td" title="${item.receivers}">${item.receivers}&nbsp;</td>
<td class="td" title="${item.actionTypeVal}&nbsp;">${item.actionTypeVal}&nbsp;</td>
<td title="${item.pelogCreateTimeString}">${item.pelogCreateTimeString}&nbsp;</td>
<c:if test="${ebpmAdmin}">
<td class="td" title="${item.appId}">${item.appId}</td>
</c:if>
<td>${item.userTime}&nbsp;</td>
<td>
<a href="${ctx}/processErrorLog/showInfo.do?pelogId=${item.pelogId}&">查看</a>&nbsp;&nbsp;&nbsp;
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
<simpletable:pageToolbar page="${page}">
</simpletable:pageToolbar>
</div>
<!-- /.table-responsive -->
</div>
<!-- /span -->
</div>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@@ -0,0 +1,121 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/commons/taglibs.jsp"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%@ include file="/commons/meta.jsp"%>
<base href="<%=basePath%>">
<title>查看流程错误日志</title>
<link href="${ctx}/resource/js/plugins/loadmask/jquery.loadmask.css" rel="stylesheet" type="text/css" />
<script type='text/javascript' src='${ctx}/resource/js/plugins/loadmask/jquery.loadmask.js'></script>
<link href="${ctx}/resource/js/plugins/jsonfommat/css/jquery-linedtextarea.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="${ctx}/resource/js/plugins/jsonfommat/css/css-classes.css" type="text/css" media="screen, projection">
<script src="${ctx}/resource/js/plugins/jsonfommat/js/jquery-linedtextarea.js" type="text/javascript"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.parser.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.format.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.interactions.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#submitButton").click(function() {
setMask("main-container");
//用jquery中的ajax方法向服务器提交请求
jQuery.ajax({
type: "POST",
url: "${ctx}/processErrorLog/retry.do",
data: $('#myform').serialize(),
success: function(resp)
{
if(resp=="ERROR"){
$("#main-container").unmask();
alert("重发失败!");
window.location.reload();
}else{
$("#main-container").unmask();
alert("重发成功!");
window.location.reload();
}
}
});
});
/*var javaEditor;
javaEditor = CodeMirror.fromTextArea(document.getElementById("scriptContent"), {
matchBrackets: true,
autoCloseBrackets: true,
mode: "application/ld+json",
lineWrapping: true
});*/
//javaEditor.setValue('');
});
</script>
</head>
<body>
<form action="${ctx}/processErrorLog/update.do" method="post" id="myform">
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-heading">
重发错误消息
</div>
<div class="panel-body" style="background: #fff;margin: 15px;width: calc(100% - 30px)">
<table class='table table-bordered form-table' border="0" cellspacing="0"
cellpadding="0" id="myTable">
<!-- 存放隐藏域的区域 -->
<input type="hidden" id="pelogId"
name="pelogId"
value="${processErrorLog.pelogId}" />
<!-- 存放表单的区域 -->
<tr>
<td>流程标题<font
color="red">*</font>
</td>
<td>${processErrorLog.processTitle}</td>
</tr>
<tr>
<td>流程操作类型<font
color="red">*</font>
</td>
<td>${processErrorLog.actionType}</td>
</tr>
<tr>
<td>流程消息内容<font
color="red">*</font>
</td>
<td>
<textarea id="json_input" name="processMsg"
class="json_input" rows="30" cols="100"
spellcheck="false"
wrap="off" style="resize: both; width: 889px; max-width: 883px;max-height: 500px">${processErrorLog.processMsg}</textarea>
<!-- <button name="validate" id="validate" value="Validate"
class="button left bold">校验</button>
<textarea id="scriptContent" name="processMsg">${processErrorLog.processMsg}</textarea>
-->
</td>
</tr>
</table>
<div class="col-md-offset-1 col-md-9" style="text-align: center;margin-bottom: 15px;margin-top: 15px">
<button id="submitButton" name="submitButton" class="btn btn-sm btn-primary" type="button">
<span class="icon_save">保存</span>
<i class="ace-icon fa fa-save bigger-110"></i>
</button>
<button type="button" class="btn btn-sm btn-primary" onclick="window.history.go(-1);">
<span class="icon_back">返回</span>
<i class="ace-icon fa fa-undo icon-on-right bigger-110"></i>
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>

View File

@@ -0,0 +1,115 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@page import="com.blueland.bpm.log.model.*" %>
<%@ include file="/commons/taglibs.jsp"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%@ include file="/commons/meta.jsp"%>
<base href="<%=basePath%>">
<title>查看流程错误日志</title>
<link href="${ctx}/resource/js/plugins/jsonfommat/css/jquery-linedtextarea.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="${ctx}/resource/js/plugins/jsonfommat/css/css-classes.css" type="text/css" media="screen, projection">
<script src="${ctx}/resource/js/plugins/jsonfommat/js/jquery-linedtextarea.js" type="text/javascript"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.parser.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.format.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.interactions.js"></script>
</head>
<body>
<form action="${ctx}/processErrorLog/update.do" method="post">
<input type="hidden" id="flag" name="flag" value="${flag}"/>
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-heading">
查看流程错误日志
</div>
<div class="panel-body" style="background: #fff;margin: 15px;width: calc(100% - 30px)">
<table class='table table-bordered form-table' border="0" cellspacing="0"
cellpadding="0" id="myTable">
<!-- 存放隐藏域的区域 -->
<input type="hidden" id="pelogId"
name="pelogId"
value="${processErrorLog.pelogId}" />
<!-- 存放表单的区域 -->
<tr>
<td width="15%">流程实例ID<font
color="red">*</font>
</td>
<td><input type="text" name="processInstanceId"
value="${processErrorLog.processInstanceId}"
id="processInstanceId" class="input" /></td>
</tr>
<tr>
<td>流程标题<font
color="red">*</font>
</td>
<td><input type="text" name="processTitle"
value="${processErrorLog.processTitle}"
id="processTitle" class="input" /></td>
</tr>
<tr>
<td>流程发送人<font
color="red">*</font>
</td>
<td><input type="text" name="creator"
value="${processErrorLog.creator}"
id="creator" class="input" /></td>
</tr>
<tr>
<td>流程操作类型<font
color="red">*</font>
</td>
<td><input type="text" name="actionType"
value="${processErrorLog.actionType}"
id="actionType" class="input" /></td>
</tr>
<tr>
<td>流程消息内容<font
color="red">*</font>
</td>
<td><textarea style="width:98%;" rows="6" name="processMsg" id="json_input" id="json_input">${processErrorLog.processMsg}</textarea>
</td>
</tr>
<tr>
<td>记录时间<font
color="red">*</font>
</td>
<td><input
value="${processErrorLog.pelogCreateTimeString}"
onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})"
id="pelogCreateTimeString"
name="pelogCreateTimeString" maxlength="0"
class="input"/></td>
</tr>
<tr>
<td>错误日志:
</td>
<td>
<textarea style="width:98%;" rows="6" name="errorMsg">${processErrorLog.errorMsg}</textarea>
</tr>
</table>
<div class="col-md-offset-1 col-md-9" style="text-align: center;margin-top: 15px;margin-bottom: 15px">
<button type="button" class="btn btn-sm btn-primary" onclick="openProcessTrackPage('${ctx}','${processErrorLog.processInstanceId}');">
<span class="icon_back">监控</span>
</button>
&nbsp;&nbsp;&nbsp;
<button type="button" class="btn btn-sm btn-primary" onclick="window.history.go(-1);">
<span class="icon_back">返回</span>
<i class="ace-icon fa fa-undo icon-on-right bigger-110"></i>
</button>
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>

View File

@@ -0,0 +1,114 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@page import="com.blueland.bpm.log.model.*" %>
<%@ include file="/commons/taglibs.jsp"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%@ include file="/commons/meta.jsp"%>
<base href="<%=basePath%>">
<title>查看流程运行日志</title>
<link href="${ctx}/resource/js/plugins/jsonfommat/css/jquery-linedtextarea.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="${ctx}/resource/js/plugins/jsonfommat/css/css-classes.css" type="text/css" media="screen, projection">
<script src="${ctx}/resource/js/plugins/jsonfommat/js/jquery-linedtextarea.js" type="text/javascript"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.parser.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.format.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.interactions.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/plugins/jsonfommat/js/jsl.interactions_ext.js"></script>
</head>
<body>
<form action="${ctx}/processErrorLog/update.do" method="post">
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-heading">
查看流程运行日志
</div>
<div class="panel-body">
<table class='table table-bordered' border="0" cellspacing="0"
cellpadding="0" id="myTable">
<!-- 存放隐藏域的区域 -->
<input type="hidden" id="pelogId"
name="pelogId"
value="${processErrorLog.pelogId}" />
<!-- 存放表单的区域 -->
<tr>
<td width="15%">流程实例ID<font
color="red">*</font>
</td>
<td><input type="text" name="processInstanceId"
value="${processErrorLog.processInstanceId}"
id="processInstanceId" class="input" /></td>
</tr>
<tr>
<td>流程标题<font
color="red">*</font>
</td>
<td><input type="text" name="processTitle"
value="${processErrorLog.processTitle}"
id="processTitle" class="input" /></td>
</tr>
<tr>
<td>流程发送人<font
color="red">*</font>
</td>
<td><input type="text" name="creator"
value="${processErrorLog.creator}"
id="creator" class="input" /></td>
</tr>
<tr>
<td>流程操作类型<font
color="red">*</font>
</td>
<td><input type="text" name="actionType"
value="${processErrorLog.actionType}"
id="actionType" class="input" /></td>
</tr>
<tr>
<td>输入消息内容<font
color="red">*</font>
</td>
<td><textarea style="width:98%;" rows="6" name="processMsg" id="json_input_ext">${processErrorLog.processMsg}</textarea>
</td>
</tr>
<tr>
<td>输出消息内容<font color="red">*</font>
</td>
<td><textarea style="width:98%;" rows="6" name="errorMsg" id="json_input">${processErrorLog.errorMsg}</textarea>
</td>
</tr>
<tr>
<td>记录时间<font
color="red">*</font>
</td>
<td><input
value="${processErrorLog.pelogCreateTimeString}"
onclick="WdatePicker({dateFmt:'<%=ProcessErrorLog.FORMAT_PELOG_CREATE_TIME%>'})"
id="pelogCreateTimeString"
name="pelogCreateTimeString" maxlength="0"
class="input"/></td>
</tr>
</table>
<div class="col-md-offset-1 col-md-9" style="text-align: center;">
<button type="button" class="btn btn-sm btn-primary" onclick="openProcessTrackPage('${ctx}','${processErrorLog.processInstanceId}');">
<span class="icon_back">监控</span>
</button>
&nbsp;&nbsp;&nbsp;
<button type="button" class="btn btn-sm btn-primary" onclick="window.history.go(-1);">
<span class="icon_back">返回</span>
<i class="ace-icon fa fa-undo icon-on-right bigger-110"></i>
</button>
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>