update
This commit is contained in:
135
ebpm-process-manage/webapp/pages/processRetryLog/create.jsp
Normal file
135
ebpm-process-manage/webapp/pages/processRetryLog/create.jsp
Normal file
@@ -0,0 +1,135 @@
|
||||
<%@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>
|
||||
119
ebpm-process-manage/webapp/pages/processRetryLog/edit.jsp
Normal file
119
ebpm-process-manage/webapp/pages/processRetryLog/edit.jsp
Normal file
@@ -0,0 +1,119 @@
|
||||
<%@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>
|
||||
142
ebpm-process-manage/webapp/pages/processRetryLog/list.jsp
Normal file
142
ebpm-process-manage/webapp/pages/processRetryLog/list.jsp
Normal file
@@ -0,0 +1,142 @@
|
||||
<%@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" %>
|
||||
<%@ 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}/processRetryLog/list.do" method="get" style="display: inline;">
|
||||
<h4 class="title-1">
|
||||
<i class="icon menu-5"></i>流程重发日志管理
|
||||
</h4>
|
||||
|
||||
<div class="bd">
|
||||
<div class="pd5">
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="0"
|
||||
class="table-search">
|
||||
|
||||
<tr>
|
||||
<td>流程实例ID:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.processInstanceId}" id="processInstanceId" name="processInstanceId" maxlength="50" />
|
||||
</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>
|
||||
<td>流程操作类型:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.actionType}" id="actionType" name="actionType" maxlength="30" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>流程消息内容:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.retryMsg}" id="retryMsg" name="retryMsg" maxlength="4000" />
|
||||
</td>
|
||||
<td>重发操作人:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.prlogOperator}" id="prlogOperator" name="prlogOperator" maxlength="50" />
|
||||
</td>
|
||||
<td>重发状态:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.prlogStatus}" id="prlogStatus" name="prlogStatus" maxlength="10" />
|
||||
</td>
|
||||
<td>重发时间:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.prlogCreateTimeString}" onclick="WdatePicker({dateFmt:'<%=ProcessRetryLog.FORMAT_PRLOG_CREATE_TIME%>'})" id="prlogCreateTimeString" name="prlogCreateTimeString" />
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>备注:</td>
|
||||
<td>
|
||||
<input class="input" value="${query.prlogReamrk}" id="prlogReamrk" name="prlogReamrk" maxlength="500" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<input value="查询" type="submit" class="btn btn-search" onclick="getReferenceForm(this).action='${ctx}/processRetryLog/list.do'"/>
|
||||
<input value="新增" type="submit" class="btn btn-search" onclick="getReferenceForm(this).action='${ctx}/processRetryLog/create.do'"/>
|
||||
<input value="删除" type="button" class="btn btn-search" onclick="batchDelete('${ctx}/processRetryLog/delete.do','items',document.forms.queryForm)"/>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="line-sep"></div>
|
||||
<table class="table-1">
|
||||
<tr>
|
||||
<th style="width:25px;"><input type="checkbox" onclick="setAllCheckboxState('items',this.checked)"></th>
|
||||
<!-- 排序时为th增加sortColumn即可,new SimpleTable('sortColumns')会为tableHeader自动增加排序功能; -->
|
||||
<th sortColumn="processInstanceId" >流程实例ID</th>
|
||||
<th sortColumn="processTitle" >流程标题</th>
|
||||
<th sortColumn="creator" >流程发送人</th>
|
||||
<th sortColumn="actionType" >流程操作类型</th>
|
||||
<th sortColumn="retryMsg" >流程消息内容</th>
|
||||
<th sortColumn="prlogOperator" >重发操作人</th>
|
||||
<th sortColumn="prlogStatus" >重发状态</th>
|
||||
<th sortColumn="prlogCreateTime" >重发时间</th>
|
||||
<th sortColumn="prlogReamrk" >备注</th>
|
||||
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
|
||||
|
||||
<c:forEach items="${page.result}" var="item" varStatus="status">
|
||||
|
||||
<tr class="${status.count % 2 == 0 ? 'odd' : 'even'}">
|
||||
|
||||
<td><input type="checkbox" name="items" value="prlogId=${item.prlogId}&"></td>
|
||||
|
||||
<td>${item.processInstanceId} </td>
|
||||
<td>${item.processTitle} </td>
|
||||
<td>${item.creator} </td>
|
||||
<td>${item.actionType} </td>
|
||||
<td>${item.retryMsg} </td>
|
||||
<td>${item.prlogOperator} </td>
|
||||
<td>${item.prlogStatus} </td>
|
||||
<td>${item.prlogCreateTimeString} </td>
|
||||
<td>${item.prlogReamrk} </td>
|
||||
<td>
|
||||
<a href="${ctx}/processRetryLog/show.do?prlogId=${item.prlogId}&">查看</a>
|
||||
<a href="${ctx}/processRetryLog/edit.do?prlogId=${item.prlogId}&">修改</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</c:forEach>
|
||||
</table>
|
||||
<simpletable:pageToolbar page="${page}">
|
||||
</simpletable:pageToolbar>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user