2024-08-14 15:17:51 +08:00

135 lines
3.7 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@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/save.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">
<!-- 存放表单的区域 -->
<tr>
<th>
流程实例ID<font color="red">*</font>
</th>
<td>
<input type="text" name="processInstanceId"
value="" id="processInstanceId"
class="input" />
</td>
</tr>
<tr>
<th>
流程标题<font color="red">*</font>
</th>
<td>
<input type="text" name="processTitle"
value="" id="processTitle"
class="input" />
</td>
</tr>
<tr>
<th>
流程发送人<font color="red">*</font>
</th>
<td>
<input type="text" name="creator"
value="" id="creator"
class="input" />
</td>
</tr>
<tr>
<th>
流程操作类型<font color="red">*</font>
</th>
<td>
<input type="text" name="actionType"
value="" id="actionType"
class="input" />
</td>
</tr>
<tr>
<th>
流程消息内容<font color="red">*</font>
</th>
<td>
<input type="text" name="retryMsg"
value="" id="retryMsg"
class="input" />
</td>
</tr>
<tr>
<th>
重发操作人:
</th>
<td>
<input type="text" name="prlogOperator"
value="" id="prlogOperator"
class="input" />
</td>
</tr>
<tr>
<th>
重发状态:
</th>
<td>
<input type="text" name="prlogStatus"
value="" id="prlogStatus"
class="input" />
</td>
</tr>
<tr>
<th>
重发时间
<font color="red">*</font>
</th>
<td><input value=""
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="" id="prlogReamrk"
class="input" />
</td>
</tr>
</table>
</div>
</div>
</div>
</form>
</body>
</html>