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

📄 refundedit.jsp

📁 仓库管理系统,适合各种行业的仓库管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*,com.bean.DTO.*" errorPage="" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link  href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<link  href="../css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
<!--
.STYLE1 {color: #9999FF}
-->
</style>
</head>

<body>
<table width="1010" border="0" height="21" bgcolor="#6495ED"cellpadding="0" cellspacing="0" >
  <tr>
<td width="15%"  >                          <font class="title1 STYLE1">编 辑 报 销 表</font></td>
  </tr>
</table>
<form id="form1" name="form1" method="post" action="caigouxitong/refundadd.jsp">
  <table width="800"  border="0" align="center" cellpadding="1" cellspacing="1">
   
    
    <tr bgcolor="#99CCCC">
      <td width="11%" height="25" class="smalltitle">采购项目</td>
      <td width="11%" height="25" class="smalltitle">其他费用</td>
      <td width="11%" height="25" class="STYLE18">总费用</td>
	  <td width="12%" height="25" class="smalltitle">报销时间</td>
      <td width="11%" height="25" class="smalltitle">经手人ID</td>
      <td width="11%" height="25" class="STYLE18">部门主管ID</td>
      <td width="11%" height="25" class="smalltitle">报销方式</td>
	  <td width="11%" class="smalltitle">操作</td>
	  <td width="11%" class="smalltitle">操作</td>
	  
    </tr>
    <c:forEach var = "dto" items="${list}">
      <tr>
        <td  height="25" class="STYLE18">${dto.projectID }</td>
        <td  height="25" class="STYLE18">${dto.othfee }</td>
        <td  height="25" class="STYLE18">${dto.totalfee }</td>
		<td  height="25" class="STYLE18">${dto.refundtime }</td>
        <td  height="25" class="STYLE18">${dto.checkerID }</td>
        <td  height="25" class="STYLE18">${dto.directorID }</td>
        <td  height="25" class="STYLE18">${dto.operateID}</td>
		<c:choose>
		  <c:when test="${dto.stateID==5}">
		  <td height="25" class="STYLE3 STYLE18">审批通过</td>  
		 <td height="25" class="STYLE18"><input class="button" type="button" value="删  除" onclick="javascript:window.location.href='/SMS/delrefund.do?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'" /></td> 
		  </c:when>
          <c:when test="${dto.stateID==6}">
		  <td height="25" class="STYLE4 STYLE18">审批未过</td>
           <td height="25" class="STYLE18"><input class="button" type="button" value="删  除" onclick="javascript:window.location.href='/SMS/delrefund.do?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'" /></td> 
          </c:when>
          <c:when test="${dto.stateID==7}">
		  <td height="25" class="STYLE4 STYLE18">报销通过</td>
           <td height="25" class="STYLE18"><input class="button" type="button" value="删  除" onclick="javascript:window.location.href='/SMS/delrefund.do?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'" /></td> 
          </c:when>
          <c:when test="${dto.stateID==8}">
		  <td height="25" class="STYLE4 STYLE18">报销未过</td>
           <td height="25" class="STYLE18"><input class="button" type="button" value="删  除" onclick="javascript:window.location.href='/SMS/delrefund.do?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'" /></td> 
          </c:when>
          <c:otherwise >
          <td height="25" class="STYLE18"><input class="button" type="button" value="修  改" onclick="javascript:window.location.href='caigouxitong/beginrefundedit.jsp?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'"/></td>
		  <td height="25" class="STYLE18"><input class="button" type="button" value="删  除" onclick="javascript:window.location.href='/SMS/delrefund.do?projectID=${dto.projectID }&&curpage=${urlPage.curpage }'" /></td>
          </c:otherwise>
		</c:choose>
	  </tr>
    </c:forEach>
    <tr>
      <td height="26" colspan="11">        
        <input class="button" type="submit" name="Submit" value="添 加" />
                   <a href="/SMS/refundedit.do?curpage=1" class="STYLE5">首页</a>    <span class="STYLE7"> <a href="/SMS/refundedit.do?curpage=${urlPage.curpage-1 }" class="STYLE6 STYLE6">上一页</a></span>     <a href="/SMS/refundedit.do?curpage=${urlPage.curpage+1 }" class="STYLE5">下一页</a>    <a href="/SMS/refundedit.do?curpage=${urlPage.totalpage }" class="STYLE5">末页</a>  </td>
    </tr>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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