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

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 = "com.redmoon.oa.book.*"%>
  6. <%@ page import = "com.redmoon.oa.dept.*"%>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  11. <title>图书信息</title>
  12. <style type="text/css">
  13. <!--
  14. body {
  15. margin-left: 0px;
  16. margin-right: 0px;
  17. margin-bottom: 0px;
  18. }
  19. -->
  20. </style></head>
  21. <link href="../common.css" rel="stylesheet" type="text/css">
  22. <style type="text/css">
  23. <!--
  24. .style2 {font-size: 14px}
  25. -->
  26. </style>
  27. <body>
  28. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  29. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  30. <%
  31. String priv="Book";
  32. if (!privilege.isUserPrivValid(request, priv)) {
  33. //out.println(fchar.makeErrMsg("对不起,您不具有发起流程的权限!"));
  34. //return;
  35. }
  36. String op = ParamUtil.get(request, "op");
  37. if (op.equals("show")) {
  38. BookMgr bm = new BookMgr();
  39. boolean re = false;
  40. try {
  41. re = bm.modify(request);
  42. }
  43. catch (ErrMsgException e) {
  44. out.print(StrUtil.Alert(e.getMessage()));
  45. }
  46. if (re)
  47. out.print(StrUtil.Alert("操作成功!"));
  48. }
  49. int id = ParamUtil.getInt(request, "id");
  50. BookDb bd = new BookDb();
  51. bd = bd.getBookDb(id);
  52. String pubDate = DateUtil.format(bd.getPubDate(), "yyyy-MM-dd");
  53.    
  54. BookTypeDb btdb = new BookTypeDb();
  55. int typeId = bd.getTypeId();
  56. BookTypeDb btd = btdb.getBookTypeDb(typeId);
  57. %>
  58. <table width="100%" height="180" border="1" align="center" cellpadding="4" cellspacing="0" bordercolorlight="#000000" bordercolordark="#ffffff" bgcolor="#FFFFFF">
  59.   <tbody>
  60.     <tr>
  61.       <td  nowrap="nowrap"align="right" width="15%">图书名称:</td>
  62.       <td  nowrap="nowrap"width="35%"><%=bd.getBookName()%></td>
  63.       <td  nowrap="nowrap"align="right" width="15%">图书编号:</td>
  64.       <td  nowrap="nowrap"width="35%"><%=bd.getBookNum()%></td>
  65.     </tr>
  66.     <tr>
  67.       <td nowrap="nowrap" align="right">图书类别:</td>
  68.       <td nowrap="nowrap"><%=btd.getName()%></td>
  69.       <td nowrap="nowrap" align="right">作者:</td>
  70.       <td nowrap="nowrap"><%=bd.getAuthor()%> </td>
  71.     </tr>
  72.     <tr>
  73.       <td nowrap="nowrap" align="right">出版单位:</td>
  74.       <td nowrap="nowrap"><%=bd.getPubHouse()%> </td>
  75.       <td nowrap="nowrap" align="right">出版时间:</td>
  76.       <td nowrap="nowrap"> <%=pubDate%></td>
  77.     </tr>
  78.     <tr>
  79.       <td nowrap="nowrap" align="right">价格(¥):</td>
  80.       <td nowrap="nowrap"><%=bd.getPrice()%></td>
  81.       <td colspan="2"> </td>
  82.     </tr>
  83.     <tr>
  84.       <td height="62" align="right">内容简介:</td>
  85.       <td colspan="3"> <%=bd.getBrief()%></td>
  86.     </tr>
  87.   </tbody>
  88. </table>
  89. </div>
  90. </html>