120 lines
3.9 KiB
Plaintext
120 lines
3.9 KiB
Plaintext
<%@page import="com.blueland.bpm.log.model.*" %>
|
||
<%@page import="com.blueland.bpm.common.page.*" %>
|
||
<%@page import="com.blueland.bpm.common.util.*"%>
|
||
<%@ 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>
|
||
</head>
|
||
<body>
|
||
<form action="${ctx}/processRetryLog/update.do" method="post">
|
||
<div class="content">
|
||
<div class="wrap">
|
||
<div class="wrap-top">
|
||
<div class="wrap-top-inner">
|
||
<a class="top-btn" id="submitButton"
|
||
onclick="javascript:getReferenceForm(this).submit();"><i
|
||
class="icon icon-sure"></i>保存</a> <a class="top-btn"
|
||
onclick="window.location='${ctx}/processRetryLog/list.do'"><i
|
||
class="icon icon-close"></i>返回</a>
|
||
</div>
|
||
</div>
|
||
<div class="column margin50">
|
||
<h4 class="wrapper-tit">编辑流程重发日志</h4>
|
||
<div class="bd">
|
||
<table class="table-review" border="0" cellspacing="0"
|
||
cellpadding="0" id="myTable">
|
||
<!-- 存放隐藏域的区域 -->
|
||
<input type="hidden" id="prlogId"
|
||
name="prlogId"
|
||
value="${processRetryLog.prlogId}" />
|
||
<!-- 存放表单的区域 -->
|
||
<tr>
|
||
<th>流程实例ID<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input type="text" name="processInstanceId"
|
||
value="${processRetryLog.processInstanceId}"
|
||
id="processInstanceId" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>流程标题<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input type="text" name="processTitle"
|
||
value="${processRetryLog.processTitle}"
|
||
id="processTitle" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>流程发送人<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input type="text" name="creator"
|
||
value="${processRetryLog.creator}"
|
||
id="creator" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>流程操作类型<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input type="text" name="actionType"
|
||
value="${processRetryLog.actionType}"
|
||
id="actionType" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>流程消息内容<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input type="text" name="retryMsg"
|
||
value="${processRetryLog.retryMsg}"
|
||
id="retryMsg" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>重发操作人:
|
||
</th>
|
||
<td><input type="text" name="prlogOperator"
|
||
value="${processRetryLog.prlogOperator}"
|
||
id="prlogOperator" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>重发状态:
|
||
</th>
|
||
<td><input type="text" name="prlogStatus"
|
||
value="${processRetryLog.prlogStatus}"
|
||
id="prlogStatus" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>重发时间<font
|
||
color="red">*</font>:
|
||
</th>
|
||
<td><input
|
||
value="${processRetryLog.prlogCreateTimeString}"
|
||
onclick="WdatePicker({dateFmt:'<%=ProcessRetryLog.FORMAT_PRLOG_CREATE_TIME%>'})"
|
||
id="prlogCreateTimeString"
|
||
name="prlogCreateTimeString" maxlength="0"
|
||
class="input"/></td>
|
||
</tr>
|
||
<tr>
|
||
<th>备注:
|
||
</th>
|
||
<td><input type="text" name="prlogReamrk"
|
||
value="${processRetryLog.prlogReamrk}"
|
||
id="prlogReamrk" class="input" /></td>
|
||
</tr>
|
||
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
|
||
</body>
|
||
</html>
|