book_return.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:5k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "java.util.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "cn.js.fan.web.*"%>
  6. <%@ page import = "com.redmoon.oa.book.*"%>
  7. <%@ page import = "com.redmoon.oa.dept.*"%>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>图书添加</title>
  13. <link href="../common.css" rel="stylesheet" type="text/css">
  14. <script language="JavaScript" type="text/JavaScript">
  15. <!--
  16. function findObj(theObj, theDoc)
  17. {
  18.   var p, i, foundObj;
  19.   
  20.   if(!theDoc) theDoc = document;
  21.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  22.   {
  23.     theDoc = parent.frames[theObj.substring(p+1)].document;
  24.     theObj = theObj.substring(0,p);
  25.   }
  26.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  27.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  28.     foundObj = theDoc.forms[i][theObj];
  29.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  30.     foundObj = findObj(theObj,theDoc.layers[i].document);
  31.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  32.   
  33.   return foundObj;
  34. }
  35. var GetDate=""; 
  36. function SelectDate(ObjName,FormatDate){
  37. var PostAtt = new Array;
  38. PostAtt[0]= FormatDate;
  39. PostAtt[1]= findObj(ObjName);
  40. GetDate = showModalDialog("../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  41. }
  42. function SetDate()
  43. findObj(ObjName).value = GetDate; 
  44. }
  45. //-->
  46. </script>
  47. <style type="text/css">
  48. <!--
  49. .style2 {font-size: 14px}
  50. .STYLE1 {color: #0066FF}
  51. -->
  52. </style>
  53. </head>
  54. <body>
  55. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  56. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  57. <%
  58. String priv = "book.all";
  59. if (!privilege.isUserPrivValid(request, priv)) {
  60. out.println(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, "pvg_invalid")));
  61. return;
  62. }
  63. String[] ids = request.getParameterValues("ids");
  64. int len = 0;
  65. if (ids!=null)
  66. len = ids.length;
  67. else
  68.    out.print(StrUtil.Alert_Redirect("你没有选择要借阅的记录!", "book_query.jsp")) ;
  69. %>
  70. <%@ include file="book_inc_menu_top.jsp"%>
  71. <br>
  72. <table width="703" border="0" align="center" cellpadding="3" cellspacing="0" class="tableframe">
  73. <form action="book_return_do.jsp?op=return" name="form1" method="post">
  74. <tr>
  75.   <td colspan="4" class="right-title" >图书借阅
  76.   <%
  77.   String strids = "";
  78.   for (int k=0; k<len; k++) {
  79.    if (strids.equals(""))
  80. strids = ids[k];
  81. else
  82. strids += "," + ids[k];
  83.   }
  84.   %>
  85.   <input name=ids type="hidden" value="<%=strids%>">  </td>
  86. </tr>
  87. <%
  88. BookDb bd= new BookDb();
  89.     BookTypeDb btdb = new BookTypeDb();
  90. %>
  91. <tr>
  92.   <td colspan="4" ><table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#0099CC"  >
  93.     <tr>
  94.       <td width="19%" height="24" align="center" bgcolor="#C4DAFF">图书名称</td>
  95.       <td width="10%" align="center" bgcolor="#C4DAFF" >图书编号</td>
  96.       <td width="10%" align="center" bgcolor="#C4DAFF">作者</td>
  97.       <td width="11%" align="center" bgcolor="#C4DAFF">所属类别</td>
  98.       <td width="18%" align="center" bgcolor="#C4DAFF">借阅人</td>
  99.       <td width="12%" align="center" bgcolor="#C4DAFF">借阅时间</td>
  100.       <td width="20%" align="center" bgcolor="#C4DAFF">预计归还时间</td>
  101.     </tr>
  102. <%
  103. for (int i=0; i<len; i++) {
  104. bd = bd.getBookDb(Integer.parseInt(ids[i]));
  105. %>
  106. <%
  107.     int typeId = bd.getTypeId();
  108. BookTypeDb btd = btdb.getBookTypeDb(typeId);
  109. %>
  110.     <tr>
  111.       <td height="22" bgcolor="#FFFFFF" id="bookName" name=bookName><%=bd.getBookName()%></td>
  112.       <td bgcolor="#FFFFFF" id="bookNum" name=bookNum ><%=bd.getBookNum()%></td>
  113.       <td bgcolor="#FFFFFF" id="pubHouse" name=pubHouse><%=bd.getAuthor()%></td>
  114.       <td bgcolor="#FFFFFF" id="author" name=author><%=btd.getName()%></td>
  115.       <td bgcolor="#FFFFFF" id="deptCode" name=deptCode><%=bd.getBorrowPerson()%></td>
  116.       <td bgcolor="#FFFFFF" id="deptCode" name=deptCode><%=bd.getBeginDate()%></td>
  117.       <td bgcolor="#FFFFFF" id="deptCode" name=deptCode><%=bd.getEndDate()%></td>
  118.     </tr>
  119.  <%}%>
  120.   </table></td>
  121.   </tr>
  122. <tr>
  123.   <td>&nbsp;</td>
  124.   <td>&nbsp;</td>
  125.   <td>&nbsp;</td>
  126.   <td>&nbsp;</td>
  127. </tr>
  128. <tr>
  129.   <td width="84">归还时间:</td>
  130.   <td width="198">
  131.   <%
  132.   Date d = new Date();
  133.   String dt = DateUtil.format(d, "yyyy-MM-dd");
  134.   d = DateUtil.addDate(d, 30);
  135.   String edt = DateUtil.format(d, "yyyy-MM-dd");
  136.   %>
  137.   <input type="text" name="beginDate" id="beginDate" value="<%=dt%>" maxlength="100" >  </td>
  138.  <td width="103">&nbsp;</td>
  139.   <td width="292">&nbsp;</td>
  140. </tr>
  141. <tr>
  142.   
  143.   <td colspan="4" align="center"><input name="submit" type="submit" class="button1"  value=" 提 交 " ></td>
  144. </tr>
  145. </form>
  146. </table>
  147. </body>
  148. </html>