📄 setquery.jsp
字号:
<%--
Created by IntelliJ IDEA.
User: niekun
Date: 2006-10-26
Time: 11:23:10
To change this template use File | Settings | File Templates.
--%>
<%@ include file="/IncludeBeginMD.jsp" %>
<%@ page import="com.hexiesoft.config.language.Configure" %>
<%
String title = (String) Configure.getConfigure(sIe_Language, "BillingMatchBrokerInvoices").get("TITLE");
String lable = (String) Configure.getConfigure(sIe_Language, "BillingMatchBrokerInvoices").get("LABLE");
String alert1 = (String) Configure.getConfigure(sIe_Language, "BillingMatchBrokerInvoices").get("ALERT_1");
%>
<html>
<head><title><%=title%>
</title></head>
<script type="text/javascript" src="<%=sResourcesPath%>/keyevent.js"></script>
<script language="javascript">
function Che_acc()
{
var blno = document.all.txt.value ;
if (document.all.txt.value.length < 1)
{
alert("must enter bill number!");
document.all.txt.focus();
return;
}
isEmpty = PopPage("/Billing/MatchBrokerInvoices/CheckCode.jsp?blno=" + blno + "&rand=" + randomNumber(), "", "");
if (isEmpty == "true") {
alert('<%=alert1%>');
document.all.txt.focus();
return;
}
OpenComp("ExistOrder", "/Billing/MatchBrokerInvoices/ExistQuery.jsp", "blno=" + blno + "&rand=" + randomNumber(), "right", "");
self.close();
return;
}
</script>
<body bgcolor="#DCDCDC">
<table border="1" width=100% align="center" bordercolor='#999999' bordercolordark='#FFFFFF'>
<TR>
<TD colspan="2"><%= title %>
</TD>
</TR>
<TR>
<TD colspan="2"></TD>
</TR>
<tr>
<td nowarp align="right" bgcolor="#D8D8AF" width=35%><%= lable %>
</td>
<td bgcolor="#F0F1DE"><INPUT TYPE="text" NAME="txt" size="6" maxlength="6" onkeydown="NumberInput()"></td>
</tr>
<tr align="left">
<TD colspan="2"><input type="button" name="next"
value="<%=(String)Configure.getConfigure(sIe_Language,"Common").get("SUBMIT")%>"
onclick="javascript:Che_acc();"
style="font-size:9pt;padding-top:3;padding-left:5;padding-right:5;background-image:url(../../Resources/functionbg.gif); border: #DCDCDC; border-style: outset; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px"
border='1'
>
<input type="button" name="Cancel"
value="<%=(String)Configure.getConfigure(sIe_Language,"Common").get("CANCEL")%>"
onClick="javascript:self.returnValue='_none_';self.close();"
style="font-size:9pt;padding-top:3;padding-left:5;padding-right:5;background-image:url(../../Resources/functionbg.gif); border: #DCDCDC; border-style: outset; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px"
border='1'>
</TD>
</tr>
</table>
</body>
</html>
<%@ include file="/IncludeEnd.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -