⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setquery.jsp

📁 财务说明的管理
💻 JSP
字号:
<%--
  Created by IntelliJ IDEA.
  User: niekun
  Date: 2006-10-19
  Time: 13:19:29
  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, "BillinginquiryBOL").get("Title");
    String lable = (String) Configure.getConfigure(sIe_Language, "BillinginquiryBOL").get("Table");
    String alert1 = (String) Configure.getConfigure(sIe_Language, "BillinginquiryBOL").get("ALERT_1");
    String alert2 = (String) Configure.getConfigure(sIe_Language, "BillinginquiryBOL").get("ALERT_2");

%>
<head><title></title>
</head>
<script type="text/javascript" src="<%=sResourcesPath%>/keyevent.js"></script>
<script language="javascript">
    function Che_acc()
    {
        if (document.all.txt.value.length < 1)
        {
            alert("must be enter bill number!");
            document.all.txt.focus();
            return;
        }
        var blno = document.all.txt.value;
        var sReturn = PopPage("/Billing/inquiryBOL/CheckCode.jsp?blno=" + blno + "&rand=" + randomNumber(), "", "");
        if (sReturn == "inv_error") {
            alert('<%=alert1%>');
            document.all.txt.focus();
            return;
        }
        else if (sReturn == "ship_error") {
            alert('<%=alert2%>');
            document.all.txt.focus();
            return;
        }
        else {
            OpenComp("ExistOrder", "/Billing/inquiryBOL/ExsitQuery.jsp", "blno=" + blno + "&rand=" + randomNumber(), "right", "");
            self.close();
        }
    }
</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="10" maxlength="10" onkeydown="NumberInput()"></td>

    </tr>

    <tr>
        <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>
<%@ include file="/IncludeEnd.jsp" %>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -