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

📄 checkcode.jsp

📁 财务说明的管理
💻 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 + -