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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.db.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "com.redmoon.oa.book.*"%>
  6. <%@ page import = "com.redmoon.oa.dept.*"%>
  7. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  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. <%@ include file="../inc/nocache.jsp"%>
  15. <style type="text/css">
  16. <!--
  17. .STYLE2 {color: #0033FF}
  18. .STYLE3 {color: #FF0000}
  19. -->
  20. </style>
  21. </head>
  22. <script language="javascript">
  23. function getcheckbox(checkboxname){
  24. var checkboxboxs = document.all.item(checkboxname);
  25. var CheckboxValue = '';
  26. if (checkboxboxs!=null)
  27. {
  28. if (checkboxboxs.length==null) {
  29. if (checkboxboxs.checked) {
  30. return checkboxboxs.value;
  31. }
  32. }
  33. for (i=0; i<checkboxboxs.length; i++)
  34. {
  35. if (checkboxboxs[i].type=="checkbox" && checkboxboxs[i].checked)
  36. {
  37. if (CheckboxValue==''){
  38. CheckboxValue += checkboxboxs[i].value;
  39. }
  40. else{
  41. CheckboxValue += ","+ checkboxboxs[i].value;
  42. }
  43. }
  44. }
  45. //return checkboxboxs.value
  46. }
  47. return CheckboxValue;
  48. }
  49. </script>
  50. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  51. <%@ include file="book_inc_menu_top.jsp"%>
  52. <br>
  53. <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="main">
  54.   <tr> 
  55.     <td width="840" height="23" valign="middle" class="right-title"><span>&nbsp;图书查询</span></td>
  56.   </tr>
  57.   <tr> 
  58.     <td valign="top" background="images/tab-b-back.gif">
  59. <%
  60. String priv = "read";
  61. if (!privilege.isUserPrivValid(request, priv))
  62. {
  63. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  64. return;
  65. }
  66. String sql;
  67. String myname = privilege.getUser(request);
  68. sql = "select id from book b" ;
  69. String querystr = "";
  70. String op = ParamUtil.get(request, "op");
  71. String cond = "";
  72. if (op.equals("search")) {
  73.     String department=ParamUtil.get(request,"department");
  74. String bookName=ParamUtil.get(request,"bookName");
  75. String strTypeId=ParamUtil.get(request,"typeId");
  76. String author=ParamUtil.get(request,"author");
  77. String bookNum=ParamUtil.get(request,"bookNum");
  78. String pubHouse=ParamUtil.get(request,"pubHouse");
  79. String keepSite=ParamUtil.get(request,"keepSite");
  80. if (!department.equals(""))
  81. cond = " where b.department like " + StrUtil.sqlstr("%" + department + "%");
  82. if (!bookName.equals(""))
  83. if (cond.equals(""))
  84. cond = " where b.bookName like " + StrUtil.sqlstr("%" + bookName + "%");
  85. else
  86. cond += " and  b.bookName like " + StrUtil.sqlstr("%" + bookName + "%");
  87. if (!strTypeId.equals("all"))
  88.     if (cond.equals(""))
  89. cond = " where b.typeId="+strTypeId;
  90. else
  91.         cond += " and b.typeId=" + strTypeId;
  92. if (!author.equals(""))
  93.     if (cond.equals(""))
  94. cond = " where b.author like " + StrUtil.sqlstr("%" + author + "%");
  95. else
  96. cond += " and b.author like " + StrUtil.sqlstr("%" + author + "%");
  97. if (!bookNum.equals(""))
  98.     if (cond.equals(""))
  99. cond = " where b.bookNum =" + StrUtil.sqlstr(bookNum);
  100. else
  101. cond += " and b.bookNum =" + StrUtil.sqlstr(bookNum); 
  102. if (!pubHouse.equals(""))
  103.    if (cond.equals(""))
  104. cond = " where b.pubHouse like " + StrUtil.sqlstr("%" + pubHouse + "%");
  105. else
  106. cond+= " and b.pubHouse like " + StrUtil.sqlstr("%" + pubHouse + "%");
  107. if (!keepSite.equals(""))
  108.    if (cond.equals(""))
  109. cond = " where b.keepSite like " + StrUtil.sqlstr("%" + keepSite + "%");
  110. else
  111.         cond += " and b.keepSite like " + StrUtil.sqlstr("%" + keepSite + "%");
  112. sql+=cond;
  113. querystr += "op=" +op + "&department=" + StrUtil.UrlEncode(department) + "&bookName=" + StrUtil.UrlEncode(bookName)+ "&typeId=" + strTypeId+ "&author=" + StrUtil.UrlEncode(author)+"&bookNum=" + StrUtil.UrlEncode(bookNum) +"&pubHouse=" + StrUtil.UrlEncode(pubHouse) +"&keepSite=" + StrUtil.UrlEncode(keepSite);
  114. }
  115. int pagesize = 10;
  116. Paginator paginator = new Paginator(request);
  117. int curpage = paginator.getCurPage();
  118. BookDb bd = new BookDb();
  119. ListResult lr = bd.listResult(sql, curpage, pagesize);
  120. int total = lr.getTotal();
  121. Vector v = lr.getResult();
  122.     Iterator ir = null;
  123. if (v!=null)
  124. ir = v.iterator();
  125. paginator.init(total, pagesize);
  126. // 设置当前页数和总页数
  127. int totalpages = paginator.getTotalPages();
  128. if (totalpages==0)
  129. {
  130. curpage = 1;
  131. totalpages = 1;
  132. }
  133. %>
  134.       <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  135.         <tr> 
  136.           <td width="47">&nbsp;</td>
  137.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  138.         </tr>
  139.       </table> 
  140.       <form name=form1 action="book_borrow.jsp" method="post">
  141.     <table width="97%" border="0" align="center" cellpadding="2" cellspacing="0" >
  142.           <tr align="center" bgcolor="#C4DAFF">
  143.             <td width="8%" >&nbsp;</td>
  144.             <td width="14%" height="24" >图书类别</td>
  145.             <td width="19%" bgcolor="#C4DAFF" >图书名称</td>
  146.             <td width="12%" bgcolor="#C4DAFF" >图书编号</td>
  147.             <td width="9%" >作者</td>
  148.             <td width="18%" >出版社</td>
  149.             <td width="9%" >借出</td>
  150.             <td width="11%" >操作</td>
  151.           </tr>
  152.         </table>
  153.     <%
  154.    int i = 0;
  155. BookTypeDb btdb = new BookTypeDb();
  156. while (ir!=null && ir.hasNext()) {
  157. bd = (BookDb)ir.next();
  158. i++;
  159. int id = bd.getId();
  160. int typeId = bd.getTypeId();
  161. BookTypeDb btd = btdb.getBookTypeDb(typeId);
  162. DeptDb dd = new DeptDb();
  163. dd = dd.getDeptDb(bd.getDeptCode());
  164. String deptName = "";
  165. if (dd!=null && dd.isLoaded())
  166. deptName = dd.getName();
  167. String borrowState="";
  168. String  checkbox;
  169. if (bd!=null && !bd.getBorrowState()) {
  170. borrowState="否";
  171. checkbox = ""; 
  172. }
  173. else {
  174.   borrowState="是";   
  175. checkbox= "disabled";
  176. }
  177. %>
  178.       <table width="97%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#B6CFC5" bgcolor="#FFFFFF">
  179.         <tr align="center" >
  180.           <td width="7%"><input name="ids" type="checkbox" value="<%=bd.getId()%>" <%=checkbox%>> </td> 
  181.           <td width="14%" height="22" ><%=btd.getName()%></td>
  182.           <td width="20%"  ><a href="#" class="STYLE2" onClick="window.open('book_show.jsp?id=<%=bd.getId()%>','','height=181, width=400, top=200,left=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no,status=no')"><%=bd.getBookName()%></a></td>
  183.   <td width="12%"  ><%=bd.getBookNum()%></td>
  184.   <td width="9%"  ><%=bd.getAuthor()%></td>
  185.   <td width="19%" ><%=bd.getPubHouse()%></td>
  186.           <td width="8%"  ><%=borrowState%></td>
  187.           <td width="6%"  ><a href="book_edit.jsp?id=<%=bd.getId()%>">编辑</a>&nbsp;&nbsp;   </td>
  188.   <td width="5%">
  189.   <a href="book_do.jsp?op=del&id=<%=bd.getId()%>">
  190.    <%
  191.      if (!bd.getBorrowState())
  192.          out.print("删除");
  193.    %>
  194.           </a></td> 
  195.         </tr>
  196.       </table>
  197.       <%}%>   
  198.   </form>
  199.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  200.         <tr> 
  201.           <td width="1%" height="23">&nbsp;</td>
  202.           <td height="23" valign="baseline"> 
  203.             <div align="right">
  204.              <%
  205.    out.print(paginator.getCurPageBlock("?"+querystr));
  206.  %>
  207.             &nbsp;</div></td>
  208.         </tr>
  209.       </table>    </td>
  210.   </tr>
  211.   <tr> 
  212.     <td height="30" colspan="2" align="center">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  213.       <%if (privilege.isUserPrivValid(request, "book.all")) {%>
  214.   <input name="button" type="submit" class="button1"  value="  借  书 " onClick="form1.submit()">
  215. &nbsp;&nbsp;    &nbsp;&nbsp;&nbsp;<input type="button" class="button1" onClick="window.location.href='book_return_list.jsp'" value=" 还  书 ">
  216.   <%}%>
  217.     &nbsp;&nbsp;&nbsp;&nbsp;
  218.     <input name="button2" type="button" class="button1" onClick="window.location.href='book_query.jsp'" value=" 查  询 "></td>
  219.   </tr>
  220. </table>
  221. </body>
  222. </html>