domark.jsp

来自「财务说明的管理」· JSP 代码 · 共 33 行

JSP
33
字号
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="/IncludeBegin.jsp" %>

<%@ page import="com.hexiesoft.are.sql.ASResultSet" %>
<%@ page import="com.hexiesoft.utils.Consts" %>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFCell" %>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFRow" %>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFSheet" %>
<%@ page import="org.apache.poi.hssf.usermodel.HSSFWorkbook" %>
<%@ page import="com.hexiesoft.utils.StringUtils" %>

<%
    String blno = DataConvert.toRealString(iPostChange, CurPage.getParameter("blno"));
    String agentblno = DataConvert.toRealString(iPostChange, CurPage.getParameter("agentblno"));
    String payrecord = DataConvert.toRealString(iPostChange, CurPage.getParameter("payrecord"));

    String sql = "update invoice set paydate='" + payrecord + "' where blno='" + blno + "'";
    Sqlca.executeSQL(sql);
    sql = "update shipment set paydate='" + payrecord + "' where blno='" + blno + "'";
    Sqlca.executeSQL(sql);
    if(agentblno!=null){
   // Sqlca.executeSQL("update packnote set agentblno='" + agentblno + "' where blno='" + blno + "'");
    }
%>
<script type="text/javascript">
    alert("success!");
   PopPage( "/Billing/MarkAgencyInvoices/EnterCode.jsp",  "","dialogWidth=30;dialogHeight=8;center:yes;status:no;statusbar:no");
    self.close();
</script>
<body>

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

⌨️ 快捷键说明

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