purchfinance.jsp
来自「(Java+SQL)-大型企业JAVA的ERP系统」· JSP 代码 · 共 34 行
JSP
34 行
<jsp:useBean id="purch" class="src.wuyang.Purch" scope="page"/>
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>
<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<% }
%>
<%!String str;%>
<%
String purchId = request.getParameter("purchId");
// int mode = Integer.parseInt(request.getParameter("mode"));
purch.load(purchId);
%>
<html>
<link rel="stylesheet" href="css.css" type="text/css">
<body bgcolor=#949b93>
<jsp:include page="PurchDetail.jsp" flush="true">
<jsp:param name="purchId" value="<%=purchId%>"/>
</jsp:include>
<p>
<form method="post" action="InsertInvoice.jsp">
<input type="hidden" name="receiptId" value="<%=purchId%>">
<input type="hidden" name="receiptType" value="2">
<input type="hidden" name="invoiceMoney" value="<%=purch.doubleFormat(purch.getAppMoney(),2)%>">
<input type="hidden" name="customerId" value="<%=purch.getCustomerId()%>">
<input type="hidden" name="employeeId" value="<%=purch.getProposer()%>">
<input type="submit" name="submit" value="开发票">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?