WorkflowCheckRule.jsp
17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="weaver.general.Util" %>
<%@ page import="weaver.workflow.workflow.WorkflowComInfo" %>
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page"/>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea" %>
<HTML>
<HEAD>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<SCRIPT language="javascript" src="/js/weaver_wev8.js"></script>
<link rel="stylesheet" href="/css/ecology8/request/requestTopMenu_wev8.css" type="text/css"/>
<link rel="stylesheet" href="/wui/theme/ecology8/jquery/js/zDialog_e8_wev8.css" type="text/css"/>
<script type="text/javascript" src="/js/dragBox/parentShowcol_wev8.js"></script>
<link rel="stylesheet" href="/css/ecology8/request/requestView_wev8.css" type="text/css"/>
<link rel="stylesheet" href="/wui/theme/ecology8/weaveredittable/css/WeaverEditTable_wev8.css">
<script src="/wui/theme/ecology8/weaveredittable/js/WeaverEditTable_wev8.js"></script>
<link href="/js/checkbox/jquery.tzCheckbox_wev8.css" type=text/css rel=STYLESHEET>
<script type="text/javascript" src="/js/ecology8/jNice/jNice/jquery.jNice_wev8.js"></script>
<%@ taglib uri="/browserTag" prefix="brow" %>
<%@ page import="weaver.conn.RecordSet" %>
<%@ include file="/templetecheck/filecheck/settingCommon.jsp" %>
<%!
public String replaceStr(String str) {
if (str != null) {
str = str.replace("<", "<");
str = str.replace(">", ">");
}
return str;
}
%>
<%
//判断只有管理员才有权限
if (userid != 1) {
response.sendRedirect("/notice/noright.jsp");
return;
}
String tabtype = Util.null2String(request.getParameter("tabtype"));
String ishtml = Util.null2String(request.getParameter("ishtml"));
String filepath = Util.null2String(request.getParameter("filepath"));
String fromTab = Util.null2String(request.getParameter("fromTab"));
String wfid = Util.null2String(request.getParameter("wfid"));
StringBuffer shownameHrm = new StringBuffer();
StringBuffer workflownames = new StringBuffer();
WorkflowComInfo workflowComInfo = new WorkflowComInfo();
/*RecordSet rsnew = new RecordSet();
String sql = " select distinct from workflow_base where id=" + wfid;
rsnew.executeSql(sql);
while (rsnew.next()) {
if (shownameHrm.length() > 0) {
shownameHrm.append(",");
}
String workflowtempid = Util.null2String(rsnew.getString("workflowid")).trim();
shownameHrm.append(workflowtempid);
if (workflownames.length() > 0) {
workflownames.append("," + workflowComInfo.getWorkflowname(workflowtempid));
} else {
workflownames.append(workflowComInfo.getWorkflowname(workflowtempid));
}
}*/%>
<script type="text/javascript">
function addRow(v) {
group.addRow(null);
}
function removeRow(v) {
var count = 0;//删除数据选中个数
jQuery("#" + v + " input[name='paramid']").each(function () {
if ($(this).is(':checked')) {
count++;
}
});
if (count == 0) {
top.Dialog.alert("请选择需要删除的数据!");
} else {
group.deleteRows();
}
}
jQuery(document).ready(function () {
jQuery("td[_samepair='rulelist']").css("padding", "0px!important");
});
</script>
</head>
<%
String imagefilename = "/images/hdMaintenance_wev8.gif";
String titlename = "流程模板检测";
String needfav = "1";
String needhelp = "";
String type = Util.null2String(request.getParameter("type"));
String note = "选填。输入多个路径请以\",\"分隔";
String sourceparams = "";
String description = Util.null2String(request.getParameter("description"));
String name = Util.null2String(request.getParameter("name"));
String name2 = Util.null2String(request.getParameter("name2"));
String content = Util.null2String(request.getParameter("content"));
String navName = java.net.URLDecoder.decode(Util.null2String(request.getParameter("navName")), "UTF-8");
%>
<BODY style="overflow:hidden">
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{新建规则,javascript:add(),_self} ";
RCMenuHeight += RCMenuHeightStep;
RCMenu += "{删除规则,javascript:dodelete2(),_self} ";
RCMenuHeight += RCMenuHeightStep;
RCMenu += "{批量检测规则,javascript:match(),_self} ";
RCMenuHeight += RCMenuHeightStep;
String PageConstId = "upgradecheckworkflowrule456";
String backfields = " t1.* ";
String fromSql = " from upgradecheckworkflowrule t1 ";
String sqlWhere = " where content!='^[\\s\\S]*.*[^\\s][\\s\\S]*$' ";
if(!"".equals(name)) {
sqlWhere = sqlWhere + " and rulename like '%" + name + "%'";
} else {
if(!"".equals(name2)){
sqlWhere = sqlWhere + " and rulename like '%" + name2 + "%'";
}
}
if(!"".equals(description)) {
sqlWhere = sqlWhere + " and ruledesc like '%" + description + "%'";
}
if(!"".equals(content)) {
sqlWhere = sqlWhere + " and content like '%" + content + "%'";
}
String orderby = "id";
String tableStringrule = "<table instanceid=\""+PageConstId+"\" tabletype=\"checkbox\" pagesize=\""+PageIdConst.getPageSize(PageConstId,user.getUID())+"\" >"+
" <sql backfields=\""+backfields+"\" sqlform=\""+fromSql+"\" sqlorderby=\"" + orderby + "\" sqlwhere=\""+Util.toHtmlForSplitPage(sqlWhere)+"\" sqlprimarykey=\"id\" sqlsortway=\"Desc\"/>"+
" <head>";
tableStringrule += "<col width=\"10%\" text=\"标识\" column=\"id\" orderkey=\"id\" display=\"false\"/>"+
"<col width=\"10%\" text=\"名称\" column=\"rulename\" orderkey=\"rulename\" transmethod=\"weaver.templetecheck.transmethod.RuleTrans.changeStr3\"/>"+
"<col width=\"10%\" text=\"规则类型\" column=\"ruletype\" orderkey=\"ruletype\" transmethod=\"weaver.templetecheck.transmethod.RuleTrans.getRuleType\" />"+
"<col width=\"20%\" text=\"描述\" column=\"ruledesc\" orderkey=\"ruledesc\" transmethod=\"weaver.templetecheck.transmethod.RuleTrans.changeStr3\"/>"+
"<col width=\"20%\" text=\"规则\" column=\"content\" orderkey=\"content\" transmethod=\"weaver.templetecheck.transmethod.RuleTrans.changeStr3\"/>"+
"<col width=\"20%\" text=\"替换内容\" column=\"replacecontent\" orderkey=\"replacecontent\" transmethod=\"weaver.templetecheck.transmethod.RuleTrans.changeStr3\"/>"+
"</head>"+
" <operates>"+
" <operate href=\"javascript:matchsingle();\" text=\"检测规则\" index=\"0\"/>"+
" <operate href=\"javascript:edit();\" text=\"编辑\" index=\"1\"/>"+
" <operate href=\"javascript:dodelete();\" text=\"删除\" index=\"2\"/>"+
"</operates></table>";
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<form action="" method="post" name="form1" id="form1">
<jsp:include page="/systeminfo/commonTabHead.jsp">
<jsp:param name="mouldID" value="check"/>
<jsp:param name="navName" value="<%=titlename %>"/>
</jsp:include>
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td class="rightSearchSpan" style="text-align:right; width:500px!important">
<input class="searchInput" id="name2" name="name2"/>
<input type="button" value="批量检测规则" style="width:100%;max-width:120px!important;" class="e8_btn_top" onclick="match()"/>
<span id="advancedSearch" class="advancedSearch">高级搜索</span>
<span title="菜单" class="cornerMenu"></span>
</td>
</tr>
</table>
<div id="tabDiv">
<span style="font-size:14px;font-weight:bold;"><%=titlename %></span>
</div>
<div class="cornerMenuDiv"></div>
<div class="advancedSearchDiv" id="advancedSearchDiv">
<wea:layout type="4col">
<wea:group context="高级搜索">
<wea:item>名称</wea:item>
<wea:item><input type="text" name="name" value="<%=name%>"></wea:item>
<wea:item>描述</wea:item>
<wea:item><input type="text" name="description" value="<%=description%>"></wea:item>
<wea:item>规则</wea:item>
<wea:item><input type="text" name="content" value="<%=content%>"></wea:item>
</wea:group>
<wea:group context="" attributes="{'groupDisplay':'none'}">
<wea:item type="toolbar">
<input type="submit" onclick="doRefresh()" value="搜索" class="zd_btn_submit"/>
<input type="button" value="重置" class="e8_btn_cancel" onclick="resetCondtion();"/>
<input type="button" value="取消" class="e8_btn_cancel" id="cancel"/>
</wea:item>
</wea:group>
</wea:layout>
</div>
<wea:layout>
<% if(!"speciafile".equals(fromTab)){%>
<wea:group context="指定流程" type="2">
<wea:item>
选择流程(不选择,则检查所有流程)
</wea:item>
<wea:item>
<%
String _completeUrl = "/data.jsp?type=workflowBrowser";
String _browserUrl = "/systeminfo/BrowserMain.jsp?url=/workflow/workflow/MutiWorkflowBrowser.jsp?selectedids=";
%>
<brow:browser viewType="0" name="workflowids"
browserValue='<%=shownameHrm.toString()%>'
browserUrl="<%=_browserUrl %>"
hasInput="true"
isSingle="false"
hasBrowser="true"
isMustInput="1"
completeUrl="<%=_completeUrl%>"
temptitle='<%= SystemEnv.getHtmlLabelName(23753,user.getLanguage())%>'
browserSpanValue='<%=workflownames.toString()%>'
width="77.5%"
_callback="workflowid_callback">
</brow:browser>
</wea:item>
</wea:group>
<%}%>
<wea:group context="规则明细">
<wea:item attributes="{colspan:'full',id:'tableitem'}">
<TABLE width="100%">
<tr >
<td valign="top" >
<input type="hidden" name="pageId" id="pageId" value="<%=PageConstId%>"/>
<wea:SplitPageTag tableString="<%=tableStringrule %>" isShowTopInfo="true" mode="run" />
</td>
</tr>
</TABLE>
</wea:item>
</wea:group>
</wea:layout>
<input name="type" value="" type="hidden"/>
<input name="ruleid" value="" type="hidden"/>
<input name="tabtype" value="<%=tabtype %>" type="hidden"/>
<input name="ishtml" value="<%=ishtml %>" type="hidden"/>
<input type="hidden" name="navName" value="<%=navName%>"/>
<input type="hidden" name="type" value="<%=type%>"/>
<input type="hidden" name="filepath" value="<%=filepath%>"/>
<input type="hidden" name="wfid" value="<%=wfid%>"/>
<input type="hidden" name="fromTab" value="<%=fromTab%>"/>
</form>
<div id="message_table_Div2" class="xTable_message" style="display: none; position: absolute; top: 203px; left: 787.5px;">正在加载数据,请稍候...</div>
<iframe id="excels" src="" style="display:none"></iframe>
</BODY>
</HTML>
<script language="javascript" src="/wui/theme/ecology8/jquery/js/zDialog_wev8.js"></script>
<script language="javascript" src="/wui/theme/ecology8/jquery/js/zDrag_wev8.js"></script>
<script type="text/javascript">
function workflowid_callback() {
}
$(document).ready(function () {
$(parent.document.getElementById("objName")).html("<%=navName %>");
$("#tableitem").removeClass("fieldName");
$("#topTitle").topMenuTitle({searchFn: doRefresh});
$(".topMenuTitle td:eq(0)").html($("#tabDiv").html());
$("#tabDiv").remove();
});
function matchsingle(id) {
$("input[name='type']").val("1");
$("input[name='ruleid']").val(id);
$("input[name='navName']").val(encodeURIComponent("<%=navName%>"));
var fromTab = "<%=fromTab%>";
var filepath = "<%=filepath%>";
if ("speciafile" == fromTab) {
if (filepath == "") {
top.Dialog.alert("文件路径未填写!");
return;
}
}
filepath = escape(filepath);
if (fromTab == 'speciafile') {
$.ajax({
url: 'SpecialFileCheckOperation.jsp',
dataType: 'json',
type: 'post',
data: {
'operation': 'checkrunstatus'
},
success: function (data) {
if (data) {
var res = data.status;
if (res == "ok") {
doOpen("/templetecheck/filecheck/SpecialFileCheckResult.jsp?filepath=" + filepath + "&isWorkflow=true&ruleid=" + id, "文件检测结果");
} else {
top.Dialog.alert("系统正在检测文件,请稍候");
return;
}
}
}
});
return;
} else {
$("#form1").attr("action", "FilecheckGetReport.jsp");
$("#form1").submit();
}
//window.location.href="WorkflowCheckResult.jsp?type=1&ruleid="+id+"&ishtml=<%=ishtml%>&tabtype=<%=tabtype%>&navName="+encodeURIComponent("<%=navName%>");
}
//保存自定义规则
function save() {
$("#form1").submit();
}
function match() {
var fromTab = "<%=fromTab%>";
var filepath = "<%=filepath%>";
if ("speciafile" == fromTab) {
if (filepath == "") {
top.Dialog.alert("文件路径未填写!");
return;
}
}
filepath = escape(filepath);
if (fromTab == 'speciafile') {
$.ajax({
url: 'SpecialFileCheckOperation.jsp',
dataType: 'json',
type: 'post',
data: {
'operation': 'checkrunstatus'
},
success: function (data) {
if (data) {
var res = data.status;
if (res == "ok") {
//var isWorkflow=$("#is_workflow").attr('checked');
//var filepath;
var ids = _xtable_CheckedCheckboxId();
//开始执行检查
doOpen("/templetecheck/filecheck/SpecialFileCheckResult.jsp?filepath=" + filepath + "&isWorkflow=true&ruleid=" + ids, "文件检测结果");
} else {
top.Dialog.alert("系统正在检测文件,请稍候");
return;
}
}
}
});
return;
} else {
var ids = _xtable_CheckedCheckboxId();
$("input[name='type']").val("1");
$("input[name='navName']").val(encodeURIComponent("<%=navName%>"));
$("input[name='ruleid']").val(ids);
$("#form1").attr("action", "FilecheckGetReport.jsp");
$("#form1").submit();
}
}
var dialog = null;
function closeDialog() {
if (dialog)
dialog.close();
}
var dWidth = 600;
var dHeight = 500;
var clientWidth = document.body.clientWidth;
dWidth = clientWidth*0.9;
var clientHeight = document.body.clientHeight;
dHeight = clientHeight * 0.9;
function doOpen(url, title) {
if (typeof dialog == 'undefined' || dialog == null) {
dialog = new window.top.Dialog();
}
dialog.currentWindow = window;
dialog.Title = title;
dialog.Width = dWidth;
dialog.Height = dHeight;
dialog.Drag = true;
dialog.maxiumnable = true;
dialog.URL = url;
try {
dialog.show();
} catch (e) {
}
}
function add() {
var url = "/templetecheck/filecheck/RuleEdit.jsp?rulefrom=workflow&method=add&tabtype=<%=tabtype%>";
doOpen(url, "新建规则");
}
function edit(id) {
var url = "/templetecheck/filecheck/RuleEdit.jsp?rulefrom=workflow&flageid=" + id + "&tabtype=<%=tabtype%>";
doOpen(url, "编辑规则");
}
function dodelete(flageids) {
if (flageids == undefined || "" == flageids) {
top.Dialog.alert("请选择记录!");
return;
}
//flageids = ","+flageids+",";
try {
top.Dialog.confirm("提示:是否确认删除?",
function () {
$.ajax({
url: 'RuleOperation.jsp?method=delete',
dataType: 'json',
type: 'post',
data: {
'flageid': "" + flageids,
'rulefrom': "workflow"
},
success: function (data) {
if (data) {
var res = data.status;
if (res == "ok") {
_table.reLoad();
return;
} else {
top.Dialog.alert("删除失败");
return;
}
}
}
});
},function(){}
);
} catch (e) {
}
}
function dodelete2() {
dodelete(_xtable_CheckedCheckboxId());
}
function doRefresh() {
$("#form1").attr("action", "WorkflowCheckRule.jsp");
$("#form1").submit();
}
</script>