📄 checkcode.jsp
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/IncludeBeginMD.jsp"%>
<%
String BLNO = DataConvert.toRealString(iPostChange,request.getParameter("BLNO"));
String Value="";
ASResultSet rs = Sqlca.getASResultSet("select * from shipment where blno = '"+BLNO+"' ");
if(rs.next() )
{
if(rs.getString("plant").equals("HILL"))
{
Value=rs.getString("plant");
}else
{
Value="";
}
}else
{
Value="shipmentfalse";
}
ASResultSet rs1 = Sqlca.getASResultSet("select * from invoice where blno = '"+BLNO+"' ");
if(rs1.next() )
{
if(rs1.getString("verifyby").equals(""))
{
Value= "invoicefalse";
}
}
%>
<script language=javascript>
self.returnValue = "<%=Value%>";
self.close();
</script>
<%@ include file="/IncludeEnd.jsp"%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -