📄 purchfinance.jsp
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -