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

📄 showstocklist.jsp

📁 一个汽车售后服务站的典型的进销管理系统,B/S模式的
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
  <head>
    <html:base />
    
    <title>采购建议信息列表----北大青鸟ny2t26item3</title>

	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<link rel="stylesheet" type="text/css" href="../style1.css" />

	<style type="text/css">
<!--
body {
	background-color: #F7F7F7;
}
.STYLE1 {font-size: 18px}
.STYLE4 {font-size: 12px}
.STYLE5 {color: #FF0000}
.STYLE6 {font-size: 12px; color: #FF0000; }
-->
</style>

  </head>
  
  <body>
  <table>
		<tr>
			<td >
				<table width="600" >
					<tr>
						<td>
							<span class="STYLE4">当前位置:<A
								href="/CarFitManageSystem/carIndex.jsp">主页</A> &gt; 采购申请单详情
								&nbsp;&nbsp;<a href="JavaScript:history.go(-1)" class="link">返回</a>
							</span>
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td align="center">
    <table width="750" border="1" cellpadding="1" cellspacing="0" bordercolor="#DCE7E4" align="center">
    	<caption align="top">采购申请详情列表</caption>
    	<tr>
	    	<th align="center"><span class="STYLE4">申请单编号</span></th>
	    	<th align="center"><span class="STYLE4">申请提出者</span></th>
	    	<th align="center"><span class="STYLE4">申请时间</span></th>
	    	<th align="center"><span class="STYLE4">申请建议</span></th>
	    	<th align="center"><span class="STYLE4">制定采购计划</span></th>
    	</tr>
    	<logic:equal value="NO" name="isHaveadvice" scope="session">
    		<tr class="TableLine1" align="center">
    			<td colspan="5">暂时没有记录</td>
    		</tr>
    	</logic:equal>
    	
    	<logic:notEqual value="NO" name="isHaveadvice" scope="session">
	    	<logic:iterate id="STOCKADVICE_LIST" name="isHaveadvice" scope="session">
		    	<tr>
		    		<td align="center">
		    			<span class="STYLE4">
		    			<bean:write name="STOCKADVICE_LIST" property="id"/>
		    			</span>	
		    		</td>
		    		<td align="center">
		    			<span class="STYLE4">
		    			<bean:write name="STOCKADVICE_LIST" property="storerName"/>
		    			<span class="STYLE4">
		    		</td>
		    		<td align="center">
		    			<span class="STYLE4">
		    			<bean:write name="STOCKADVICE_LIST" property="applyTime"/>
		    			<span class="STYLE4">
		    		</td>
		    		<td align="center">
		    			<span class="STYLE4">
		    			<bean:write name="STOCKADVICE_LIST" property="storeIdea"/>
		    			</span>
		    		</td>
		    		<td align="center"> 
		    			<span class="STYLE4">
		    			<html:link action="/preparedConstitute.do" paramId="stocksingleone" paramName="STOCKADVICE_LIST" paramProperty="id">采购计划</html:link>
		    			</span>
		    		</td>
		    	</tr>
	    	</logic:iterate>
    	</logic:notEqual>
    </table>
   </td>
		</tr>
	</table>
  </body>
</html:html>

⌨️ 快捷键说明

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