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

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.officeequip.*"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>添加办公用品类别</title>
  11. <link href="../common.css" rel="stylesheet" type="text/css">
  12. <%@ include file="../inc/nocache.jsp"%>
  13. <script language="JavaScript" type="text/JavaScript">
  14. <!--
  15. function openWin(url,width,height)
  16. {
  17.   var newwin=window.open(url,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=150,left=220,width="+width+",height="+height);
  18. }
  19. //-->
  20. </script>
  21. <style type="text/css">
  22. <!--
  23. .style2 {font-size: 14px}
  24. .STYLE3 {color: #FFFFFF}
  25. .STYLE5 {color: #FF0000}
  26. .STYLE6 {color: #000000}
  27. -->
  28. </style>
  29. </head>
  30. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  31. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  32. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  33. <%
  34. String priv="officeequip";
  35. if (!privilege.isUserPrivValid(request, priv)) {
  36. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  37. return;
  38. }
  39. String op = ParamUtil.get(request, "op");
  40. if (op.equals("add")) {
  41. OfficeTypeMgr btm = new OfficeTypeMgr();
  42. boolean re = false;
  43. try {
  44.   re = btm.create(request);
  45. }
  46. catch (ErrMsgException e) {
  47. out.print(StrUtil.Alert(e.getMessage()));
  48. }
  49. if (re)
  50. out.print(StrUtil.Alert_Redirect("操作成功!", "officeequip_type_list.jsp"));
  51. }
  52. if (op.equals("del")) {
  53. OfficeTypeMgr btm = new OfficeTypeMgr();
  54. boolean re = false;
  55. try {
  56. re = btm.del(request);
  57. }
  58. catch (ErrMsgException e) {
  59. out.print(StrUtil.Alert(e.getMessage()));
  60. }
  61. if (re)
  62. out.print(StrUtil.Alert("操作成功!"));
  63. }
  64. %>
  65. <%@ include file="officeequip_inc_menu_top.jsp"%>
  66. <br>
  67. <table width="52%" border="0" align="center" cellpadding="3" cellspacing="1" bordercolor="#FFFFFF" bgcolor="#CCCCCC" class="tableframe">
  68.   <tr bgcolor="#00CCFF">
  69.     <td align="center" bgcolor="#BBF1FF" class="right-title">用品类别名称</span></td>
  70.     <td align="center" bgcolor="#BBF1FF" class="right-title">参考单位</td>
  71.     <td align="center" bgcolor="#BBF1FF" class="right-title">备 注</td>
  72.     <td width="20%" align="center" bgcolor="#BBF1FF" class="right-title">操 作</td>
  73.   </tr>
  74.   <%
  75.   OfficeTypeDb otd = new OfficeTypeDb();
  76.   String sql = "select id from office_equipment_type";
  77.   Iterator ir = otd.list(sql).iterator();
  78.   while (ir.hasNext()) {
  79. otd = (OfficeTypeDb)ir.next();
  80.     %>
  81.   <tr>
  82.     <td width="23%" bgcolor="#FFFFFF"><a href="officeequip_all_list.jsp?op=search&typeId=<%=otd.getId()%>"><%=otd.getName()%></a></td>
  83.     <td width="23%" bgcolor="#FFFFFF"><%=otd.getUnit()%></td>
  84.     <td width="34%" bgcolor="#FFFFFF"><% 
  85. String abstracts = "";
  86. if (otd.getAbstracts() == null)
  87.        abstracts = "";
  88. else    
  89.        abstracts = otd.getAbstracts();
  90. %>
  91.     <%=abstracts%> </td>
  92.     <td align="center" bgcolor="#FFFFFF"><a href="officeequip_type_edit.jsp?id=<%=otd.getId()%>">编辑</a>&nbsp;&nbsp;<a href="#" onClick="if (confirm('您确定要删除<%=otd.getName()%>吗?')) window.location.href='?op=del&id=<%=otd.getId()%>'">删除</a></td>
  93.   </tr>
  94.   <%}%>
  95. </table>
  96. <p align="center"><input type="button" class="button1" onClick="openWin('officeequip_type_add.jsp?id=<%=otd.getId()%>',494,123)" value="添加类别">
  97. </p>
  98. </td>
  99. </tr>
  100. <tr> 
  101.     <td height="9">&nbsp;</td>
  102. </tr>
  103. <br>
  104. <br>
  105. </body>
  106. </html>