📄 entercode.jsp
字号:
<%-- Created by IntelliJ IDEA. User: RuiLei Date: 2006-5-21 Time: 20:35:02 To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html; charset=GBK" %><%@ include file="/IncludeBeginMD.jsp" %><%@ page import="com.hexiesoft.utils.Consts" %><% String title = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("TITLE"); String alertErrorBLNONull = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("ERROR_BLNO_NULL"); String alertErrorBLNOEmpty = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("ERROR_BLNO_EMPTY"); String alertErrorWarehouseCodeNull = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("ERROR_WAREHOUSE_CODE_NULL"); String alertErrorWarehouseCodeEmpty = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("ERROR_WAREHOUSE_CODE_EMPTY"); String pagePromptEnterCode = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("PAGE_PROMPT_ENTER_CODE"); String pagePromptEnterWarehouseCode = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("PAGE_PROMPT_ENTER_WAREHOUSE_CODE"); String submitOK = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("SUBMIT_OK"); String submitAbort = (String) Configure.getConfigure(sIe_Language, "BillingChangeShipmentToWarehouse").get("SUBMIT_ABORT");%><html><head> <title><%=title%> </title></head><script language=javascript> function Che_acc() { if (document.all.code.value.length < 1) { alert("<%=alertErrorBLNONull%>"); document.all.code.focus(); return; } if (document.all.warehouseCode.value.length < 1) { alert("<%=alertErrorWarehouseCodeNull%>"); document.all.warehouseCode.focus(); return; } sWarehouseCode = document.all.warehouseCode.value; sWarehouseCode_isEmpty = PopPage("/Billing/changeShipmentToWarehouse/CheckCode.jsp?Code=" + sWarehouseCode + "&CheckType=<%=Consts.WAREHOUSE_CODE_EMPTY%>&rand=" + randomNumber(), "", ""); if (sWarehouseCode_isEmpty == "true") { alert("<%=alertErrorWarehouseCodeEmpty%>"); return; } sCode = document.all.code.value; sCode_isEmpty = PopPage("/Billing/changeShipmentToWarehouse/CheckCode.jsp?Code=" + sCode + "&CheckType=<%=Consts.BLNO_EMPTY%>&rand=" + randomNumber(), "", ""); if (sCode_isEmpty == "false") { OpenComp("ExistOrder", "/Billing/changeShipmentToWarehouse/ChangeShipmentToWarehouse.jsp", "Code=" + sCode + "&sWarehouseCode=" + sWarehouseCode + "&rand=" + randomNumber(), "right", ""); self.close(); return; } else if (sWarehouseCode_isEmpty == "false") { self.close(); OpenComp("ExistOrder", "/Billing/changeShipmentToWarehouse/EnterCodeWithWarehouseCode.jsp", "Code=" + sCode + "&sWarehouseCode=" + sWarehouseCode + "&rand=" + randomNumber(), "right", ""); return; } else { alert("<%=alertErrorBLNOEmpty%>"); return; } }</script><body class="pagebackground" 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%><%=pagePromptEnterCode%>: </td> <td bgcolor="#F0F1DE"> <input type="text" name="code" size="6" maxlength="6"> </td> </tr> <tr> <td nowarp align="right" bgcolor="#D8D8AF" width=35%><%=pagePromptEnterWarehouseCode%>: </td> <td nowrap bgcolor="#F0F1DE"> <input type="text" name="warehouseCode" size="4" maxlength="4" style="text-transform:uppercase;"> </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 + -