📄 enterinvblno.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="/IncludeBeginMD.jsp" %>
<%
String lTitle = (String) Configure.getConfigure(sIe_Language, "EditVerifyBolAndInvoice").get("Title");
String lInvBLNo = (String) Configure.getConfigure(sIe_Language, "EditVerifyBolAndInvoice").get("lInvBLNo");
String Submit = (String) Configure.getConfigure(sIe_Language, "EditVerifyBolAndInvoice").get("Submit");
String Abort = (String) Configure.getConfigure(sIe_Language, "EditVerifyBolAndInvoice").get("Abort");
%>
<html>
<head>
<title><%=lTitle%></title>
</head>
<script type="text/javascript" src="<%=sResourcesPath%>/keyevent.js"></script>
<script language=javascript>
function Che_acc()
{
if(document.all.txtInvBLNo.value.length<1){
alert("please enter bill number");
document.all.txtInvBLNo.focus();
return;
}
InvBLNo = document.all.txtInvBLNo.value;
Return_isEmpty = PopPage("/Billing/EditVerifyBolAndInvoice/InvoiceCheck.jsp?txtInvBLNo="+InvBLNo+"&rand="+randomNumber(),"","");
// Return_isEmpty=OpenComp("Billing", "/Billing/addBOL/InvoiceCheck.jsp", "Bol="+Bol+"&rand="+randomNumber(), "right", "");
if(Return_isEmpty=="nofound")
{
alert("Invoice not found!");
document.all.txtInvBLNo.focus ();
return;
}
else
if(Return_isEmpty=="UnableEdite")
{
alert("Invoice has been exported to ACCPAC/JD Edwards. Unable to Edit/Verify!");
document.all.txtInvBLNo.focus ();
return;
}
else
{ isEmpty = PopPage("/Billing/EditVerifyBolAndInvoice/ShipmentCheck.jsp?txtInvBLNo="+InvBLNo+"&rand="+randomNumber(),"","");
// isEmpty = OpenComp("Billing","/Billing/addBOL/ShipmentCheck.jsp","Bol="+Bol+"&rand="+randomNumber(),"right","");
if(isEmpty=="true")
{
alert("Shipment records for BLNO not found!");
document.all.txtInvBLNo.focus ();
return;
}
/// should be changeedd
OpenComp("Billing","/Billing/EditVerifyBolAndInvoice/EnterDate.jsp","txtInvBLNo="+InvBLNo+"&rand="+randomNumber(),"right","");
self.returnValue="OK";
self.close();
return;
}
}
</script>
<body bgcolor="#DCDCDC">
<br>
<table border="1" width=100% align="center" bordercolor='#999999' bordercolordark='#FFFFFF'>
<tr>
<td nowarp align="right" class="black9pt" bgcolor="#D8D8AF" width=35% ><%=lInvBLNo%></td>
<td nowarp bgcolor="#F0F1DE" ><input type=text name=txtInvBLNo size=10 onkeydown="NumberInput()"></td>
</tr>
<tr align="center">
<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>
</tr>
</table>
</body>
</html>
<%@ include file="/IncludeEnd.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -