📄 unitpriceconfirm.jsp
字号:
<jsp:useBean id="finance" class="src.wuyang.FinanceInfoTra" 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>
<% }
%>
<html>
<head>
<title>审核</title>
<link rel="stylesheet" href="css.css" type="text/css">
</head>
<%
/*
0 销售开票申请单
1 调拨申请单
2 采购申请单
3 易耗品采购申请单
4 合同
6 进出口合同
*/
String str[]={"SlipFinance.jsp","AllocatUpdate.jsp","PurchFinance.jsp","UllageDeptUpdate.jsp","ContractUpdate.jsp","InsertMoneyFlow.jsp","ImportContractUpdate.jsp"};
String str2[]={"slipId","allocatId","purchId","ullageId","contractId","invoiceId","contractId"};
String str3[]={"开提货单","发货","开发票","收付款","成本价确认"};
String str4[]={"销售开票申请单","调拨申请单","采购申请单","易耗品采购申请单","合同","发票","进出口合同"};
String whereClause=" state=0 or state=2";
int count=finance.query(whereClause,"infoId");
%>
<body bgcolor=#949b93><table width="100%" border="1" height="90%" bordercolorlight="#616860" bordercolordark="#CCCCCC" bgcolor="#4c7171" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<blockquote><br>
<br>
<table width="88%" border="1" bordercolorlight="#000000" bordercolordark="#CCCCCC" width="578" cellpadding="0" cellspacing="0">
<tr bgcolor="#949b93">
<td class="text">
<div align="center"><b>凭证</b></div>
</td>
<td class="text">
<div align="center"><b>凭证类型</b></div>
</td>
<td class="text">
<div align="center"><b>操作状态</b></div>
</td>
</tr>
<%
while (finance.next()>0) {
%>
<tr>
<td class="textb"><a href="<%=str[finance.getReceiptType()]%>?<%=str2[finance.getReceiptType()]%>=<%=finance.getReceiptId()%>&mode=<%=finance.getState()%>"><%=finance.getReceiptId()%></a></td>
<td class="textb"><%=str4[finance.getReceiptType()]%></td>
<td class="textb"><%=str3[finance.getState()]%></td>
</tr>
<%
}
%>
</table>
</blockquote>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -