inputdataOperation.jsp
3.9 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
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<%@ page import="java.util.*"%>
<%@ page import="weaver.integration.logging.Logger"%>
<%@ page import="weaver.integration.logging.LoggerFactory"%>
<jsp:useBean id="FieldInputTools" class="weaver.integration.conftest.FieldInputTools" scope="page" />
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
<%
String imagefilename = "/images/hdMaintenance_wev8.gif";
String titlename = SystemEnv.getHtmlLabelName(20961,user.getLanguage());
String needfav ="1";
String needhelp ="";
Logger newlog = LoggerFactory.getLogger();
String operation = Util.null2String(request.getParameter("operation"));
String actionid = Util.null2String(request.getParameter("actionid"));
Map sqls = new HashMap();
if(!actionid.equals("")){
FieldInputTools.setUser(user);
FieldInputTools.setActionid(actionid);
FieldInputTools.setDatatype(operation);
FieldInputTools.setRequest(request);
sqls = FieldInputTools.getDMLFinallySQL();
}
%>
<html>
<HEAD>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<SCRIPT language="javascript" src="/js/weaver_wev8.js"></script>
</HEAD>
<BODY>
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(309,user.getLanguage())+",javascript:onBack(),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
RCMenu += "{"+SystemEnv.getHtmlLabelName(1290,user.getLanguage())+",javascript:goBack(),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<form action="inputdataOperation.jsp" method="post" name="inputdata" id="inputdata" >
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td class="rightSearchSpan" style="text-align:right; width:500px!important">
<input type="button" value="<%=SystemEnv.getHtmlLabelName(309 ,user.getLanguage()) %>" class="e8_btn_top" onclick="onBack()"/>
<input type="button" value="<%=SystemEnv.getHtmlLabelName(1290 ,user.getLanguage()) %>" class="e8_btn_top" onclick="goBack()"/>
<span title="<%=SystemEnv.getHtmlLabelName(23036 ,user.getLanguage()) %>" class="cornerMenu"></span>
</td>
</tr>
</table>
<div id="tabDiv" >
<span style="font-size:14px;font-weight:bold;"></span>
</div>
<div class="cornerMenuDiv"></div>
<div class="advancedSearchDiv" id="advancedSearchDiv" style='display:none;'>
</div>
<wea:layout type="2col">
<wea:group context="<%=SystemEnv.getHtmlLabelName(21845, user.getLanguage())%>">
<wea:item><%=SystemEnv.getHtmlLabelName(129307, user.getLanguage())%> </wea:item>
<wea:item><%=sqls.get("dmlSQL") %></wea:item>
</wea:group>
<wea:group context="<%=SystemEnv.getHtmlLabelName(26426, user.getLanguage())%>">
<wea:item><%=SystemEnv.getHtmlLabelName(129307, user.getLanguage())%> </wea:item>
<wea:item><%=sqls.get("dmlcussql") %></wea:item>
</wea:group>
</wea:layout>
</form>
<div id="zDialog_div_bottom" class="zDialog_div_bottom">
<input type="button" style="display:none;" class=zd_btn_submit accessKey=S id=btnsearch value="S-<%=SystemEnv.getHtmlLabelName(197,user.getLanguage())%>"></input>
<wea:layout needImportDefaultJsAndCss="false">
<wea:group context="" attributes="{'groupDisplay':'none'}">
<wea:item type="toolbar">
<input type="button" class=zd_btn_cancle accessKey=T id=btncancel value="<%=SystemEnv.getHtmlLabelName(309,user.getLanguage())%>" onclick='onBack();'></input>
</wea:item>
</wea:group>
</wea:layout>
</div>
</BODY>
<script type="text/javascript">
jQuery(document).ready(function () {
resizeDialog(document);
});
var dialog = parent.parent.getDialog(parent);
function onBack(){
dialog.close();
}
function goBack(){
window.location.href = "/integration/configuretest/inputdata.jsp?urlType=test&operation=<%=operation%>&actionid=<%=actionid%>";
}
</script>
</html>