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

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. function setPerson(deptCode, deptName, user, userRealName)
  46. {
  47. form1.borrowPerson.value = user;
  48. form1.userRealName.value = userRealName;
  49. }
  50. //-->
  51. </script>
  52. <style type="text/css">
  53. <!--
  54. .style2 {font-size: 14px}
  55. .STYLE3 {color: #313031}
  56. -->
  57. </style>
  58. </head>
  59. <body>
  60. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  61. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  62. <%
  63. String priv = "book.all";
  64. if (!privilege.isUserPrivValid(request, priv)) {
  65. out.println(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, "pvg_invalid")));
  66. return;
  67. }
  68. String[] ids = request.getParameterValues("ids");
  69. int len = 0;
  70. if (ids!=null)
  71. len = ids.length;
  72. else
  73.    out.print(StrUtil.Alert_Redirect("你没有选择要借阅的记录!", "book_query.jsp")) ;
  74. %>
  75. <%@ include file="book_inc_menu_top.jsp"%>
  76. <br>
  77. <table width="643" border="0" align="center" cellpadding="3" cellspacing="0" class="tableframe">
  78. <form action="book_do.jsp?op=borrow" name="form1" method="post">
  79. <tr>
  80.   <td colspan="4" class="right-title" >图书借阅
  81.   <%
  82.   String strids = "";
  83.   for (int k=0; k<len; k++) {
  84.    if (strids.equals(""))
  85. strids = ids[k];
  86. else
  87. strids += "," + ids[k];
  88.   }
  89.   %>
  90.   <input name=ids type="hidden" value="<%=strids%>">  </td>
  91. </tr>
  92. <%
  93. BookDb bd= new BookDb();
  94.     BookTypeDb btdb = new BookTypeDb();
  95. %>
  96. <tr>
  97.   <td colspan="4" ><table width="625" border="0" align="center" cellpadding="2" cellspacing="1" bordercolor="#8F95CF" bgcolor="#9CCFCE"  >
  98.     <tr>
  99.       <td width="103" align="center" bgcolor="#E7E4E2">图书名称</td>
  100.       <td width="103" align="center" bgcolor="#E7E4E2" >图书编号</td>
  101.       <td width="158" align="center" bgcolor="#E7E4E2">出版社</td>
  102.       <td width="114" align="center" bgcolor="#E7E4E2">作者</td>
  103.       <td width="121" align="center" bgcolor="#E7E4E2">所属类别</td>
  104.     </tr>
  105. <%
  106. for (int i=0; i<len; i++) {
  107. bd = bd.getBookDb(Integer.parseInt(ids[i]));
  108. %>
  109. <%
  110.     int typeId = bd.getTypeId();
  111. BookTypeDb btd = btdb.getBookTypeDb(typeId);
  112. %>
  113.     <tr>
  114.       <td bgcolor="#FFFFFF" id="bookName" name=bookName><span class="STYLE3"><%=bd.getBookName()%></span></td>
  115.       <td bgcolor="#FFFFFF" id="bookNum" name=bookNum ><span class="STYLE3"><%=bd.getBookNum()%></span></td>
  116.       <td bgcolor="#FFFFFF" id="pubHouse" name=pubHouse><span class="STYLE3"><%=bd.getPubHouse()%></span></td>
  117.       <td bgcolor="#FFFFFF" id="author" name=author><span class="STYLE3"><%=bd.getAuthor()%></span></td>
  118.       <td bgcolor="#FFFFFF" id="deptCode" name=deptCode><span class="STYLE3"><%=btd.getName()%></span></td>
  119.      </tr>
  120.  <%}%>
  121.   </table></td>
  122.   </tr>
  123. <tr>
  124.   <td width="72">借阅时间:</td>
  125.   <td width="191">
  126.   <%
  127.   Date d = new Date();
  128.   String dt = DateUtil.format(d, "yyyy-MM-dd");
  129.   d = DateUtil.addDate(d, 30);
  130.   String edt = DateUtil.format(d, "yyyy-MM-dd");
  131.   %>
  132.   <input type="text" name="beginDate" id="beginDate" value="<%=dt%>" maxlength="100" >  </td>
  133.  <td width="112">预计归还时间:  </td>
  134.   <td width="242"><input type="text" name="endDate" id="endDate" value="<%=edt%>" maxlength="100"><img style="CURSOR: hand" onClick="SelectDate('endDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  135. </tr>
  136. <tr>
  137.   <td align="left" nowrap>借阅人:</td>
  138.   <td colspan="3"><input type="hidden" name="borrowPerson" id="borrowPerson" value="">
  139.   <input name="userRealName" type="text" id="userRealName" value="" readonly>
  140.     <a href="#" onClick="javascript:showModalDialog('../user_sel.jsp',window.self,'dialogWidth:500px;dialogHeight:480px;status:no;help:no;')">选择用户</a></td>
  141. </tr>
  142. <tr> 
  143.       <td align="left" nowrap>备注:</td>
  144.       <td colspan="3"><textarea  name="brief"  id="brief" style="width:100%" rows="8"></textarea></td>
  145.     </tr><tr>
  146.   
  147.   <td colspan="4" align="center">
  148.      <input name="submit" type="submit" class="button1"  value="提  交" > 
  149.      &nbsp;</td>
  150. </tr>
  151. </form>
  152. </table>
  153. </body>
  154. </html>