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

📄 invoicecheck.jsp

📁 财务说明的管理
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK" %>
<%@ include file="/IncludeBeginMD.jsp" %>
<%
    String ReturnValue = "";
    String txtInvBLNo = DataConvert.toRealString(iPostChange, CurPage.getParameter("txtInvBLNo"));
    System.out.println("%%%%%%%%%%%%%%%%%%%%%%%%"+txtInvBLNo);
    ASResultSet rs = Sqlca.getASResultSet("select * from invoice where blno = '" + txtInvBLNo + "' ");

    if (rs.next()) {
        if ("1".equals(rs.getString("accpaced")) || "1".equals(rs.getString("tranpflag"))) {
            ReturnValue = "UnableEdite";
        }
        System.out.println(rs.getString("accpaced")+rs.getString("tranpflag"));
    } else {
        ReturnValue = "nofound";
    }
    System.out.println(ReturnValue);
%>
<script language=javascript>
    self.returnValue = "<%=ReturnValue%>";
    self.close();

</script>
<%@ include file="/IncludeEnd.jsp" %>

⌨️ 快捷键说明

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