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

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.web.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.visual.*"%>
  7. <%@ page import = "com.redmoon.oa.flow.FormDb"%>
  8. <%@ page import = "com.redmoon.oa.flow.FormField"%>
  9. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  10. <%
  11. String priv = "read";
  12. if (!privilege.isUserPrivValid(request, priv))
  13. {
  14. // out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  15. // return;
  16. }
  17. String op = ParamUtil.get(request, "op");
  18. String formCode = "sales_product_info";
  19. String querystr = "";
  20. FormDb fd = new FormDb();
  21. fd = fd.getFormDb(formCode);
  22. %>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  24. <html>
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <title><%=fd.getName()%>列表</title>
  28. <link href="../common.css" rel="stylesheet" type="text/css">
  29. <%@ include file="../inc/nocache.jsp"%>
  30. <script src="<%=Global.getRootPath()%>/inc/flow_dispose_js.jsp"></script>
  31. <script src="<%=Global.getRootPath()%>/inc/flow_js.jsp"></script>
  32. <script>
  33. function sel(sth) {
  34. window.opener.setIntpuObjValue(sth);
  35. window.close();
  36. }
  37. </script>
  38. </head>
  39. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  40. <%
  41. String sql = "select id from " + fd.getTableNameByForm();
  42. String query = ParamUtil.get(request, "query");
  43. if (!query.equals(""))
  44. sql = query;
  45. else
  46. if (op.equals("search")) {
  47. Iterator ir = fd.getFields().iterator();
  48. String cond = "";
  49. while (ir.hasNext()) {
  50. FormField ff = (FormField)ir.next();
  51. String value = ParamUtil.get(request, ff.getName());
  52. String name_cond = ParamUtil.get(request, ff.getName() + "_cond");
  53. if (ff.getType().equals(ff.TYPE_DATE) || ff.getType().equals(ff.TYPE_DATE_TIME)) {
  54. String fDate = ParamUtil.get(request, ff.getName() + "FromDate");
  55. String tDate = ParamUtil.get(request, ff.getName() + "ToDate");
  56. if (!fDate.equals("")) {
  57. if (cond.equals(""))
  58. cond += ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  59. else
  60. cond += " and " + ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  61. }
  62. if (!tDate.equals("")) {
  63. if (cond.equals(""))
  64. cond += ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  65. else
  66. cond += " and " + ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  67. }
  68. }
  69. else {
  70. if (name_cond.equals("0")) {
  71. if (!value.equals("")) {
  72. if (cond.equals(""))
  73. cond += ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  74. else
  75. cond += " and " + ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  76. }
  77. }
  78. else if (name_cond.equals("1")) {
  79. if (!value.equals("")) {
  80. if (cond.equals(""))
  81. cond += ff.getName() + "=" + StrUtil.sqlstr(value);
  82. else
  83. cond += " and " + ff.getName() + "=" + StrUtil.sqlstr(value);
  84. }
  85. }
  86. }
  87. }
  88. if (!cond.equals(""))
  89. sql = sql + " where " + cond;
  90. }
  91. querystr = "query=" + StrUtil.UrlEncode(sql);
  92. %>
  93. <table width="80%" border="0" align="center" cellpadding="2" cellSpacing="0" class="tableframe">
  94.   <form id="form2" name="form2" action="?op=search" method="post">
  95.     <tbody>
  96.       <tr>
  97.         <td noWrap colSpan="3">
  98.           <table cellSpacing="0" cellPadding="2" width="100%" border="0">
  99.             <tbody>
  100.               <tr>
  101.                 <td colSpan="3" bgcolor="#C4DAFF"><b>产品查询</b></td>
  102.               </tr>
  103.               <tr>
  104.                 <td width="29%">供应商:</td>
  105.                 <td noWrap width="19%"><select name="provider_cond">
  106.                     <option value="1" selected>等于</option>
  107.                   </select></td>
  108.                 <td width="52%"><input name="provider" size="20"></td>
  109.               </tr>
  110.               <tr>
  111.                 <td width="29%">产品名称:</td>
  112.                 <td noWrap width="19%"><select name="product_name_cond">
  113.                     <option value="1">等于</option>
  114.                     <option value="0" selected>包含</option>
  115.                   </select></td>
  116.                 <td width="52%"><input name="product_name" size="20"></td>
  117.               </tr>
  118.               <tr>
  119.                 <td width="29%">产品类别:</td>
  120.                 <td noWrap width="19%"><select name="product_mode_cond">
  121.                     <option value="1" selected>等于</option>
  122.                   </select></td>
  123.                 <td width="52%"><input name="product_mode" size="20"></td>
  124.               </tr>
  125.             </tbody>
  126.           </table>
  127.         </td>
  128.       </tr>
  129.       <tr align="middle">
  130.         <td noWrap align="center" colSpan="3" height="30"><input class="BigButton"  type="submit" value="查  询" name="submit"> 
  131.         &nbsp;&nbsp;&nbsp;&nbsp;</td>
  132.       </tr>
  133.       <tr>
  134.         <td width="684">
  135.       </tr>
  136.     </tbody>
  137.   </form>
  138. </table>
  139. <%
  140. int pagesize = 10;
  141. Paginator paginator = new Paginator(request);
  142. int curpage = paginator.getCurPage();
  143. FormDAO fdao = new FormDAO();
  144. ListResult lr = fdao.listResult(formCode, sql, curpage, pagesize);
  145. int total = lr.getTotal();
  146. Vector v = lr.getResult();
  147.     Iterator ir = null;
  148. if (v!=null)
  149. ir = v.iterator();
  150. paginator.init(total, pagesize);
  151. // 设置当前页数和总页数
  152. int totalpages = paginator.getTotalPages();
  153. if (totalpages==0)
  154. {
  155. curpage = 1;
  156. totalpages = 1;
  157. }
  158. %>
  159. <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  160.   <tr>
  161.     <td width="47">&nbsp;</td>
  162.     <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  163.   </tr>
  164. </table>
  165. <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
  166.   <tr align="center" bgcolor="#C4DAFF">
  167.     <td width="26%" bgcolor="#C4DAFF">产品名称</td>
  168.     <td width="20%" bgcolor="#C4DAFF">售价</td>
  169.     <td width="21%" bgcolor="#C4DAFF">类别</td>
  170.     <td width="17%" bgcolor="#C4DAFF">操作</td>
  171.   </tr>
  172.   <%
  173.    int i = 0;
  174. while (ir!=null && ir.hasNext()) {
  175. fdao = (FormDAO)ir.next();
  176. i++;
  177. int id = fdao.getId();
  178. %>
  179.   <tr align="center" bgcolor="#EEEEEE">
  180.     <td width="26%" bgcolor="#EEEEEE"><a href="product_show.jsp?id=<%=id%>&formCode=<%=formCode%>"><%=fdao.getFieldValue("product_name")%></a></td>
  181.     <td width="20%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("standard_price")%></td>
  182.     <td width="21%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("product_mode")%></td>
  183.     <td width="17%" bgcolor="#EEEEEE"><a href="javascript:sel('<%=fdao.getFieldValue("product_name")%>')">选择</a>&nbsp;&nbsp; </td>
  184.   </tr>
  185.   <%
  186. }
  187. %>
  188. </table>
  189. <br>
  190. <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  191.   <tr>
  192.     <td width="1%" height="23">&nbsp;</td>
  193.     <td height="23" valign="baseline"><div align="right">
  194.       <%
  195. out.print(paginator.getCurPageBlock("?"+querystr));
  196. %>
  197.       &nbsp;</div></td>
  198.   </tr>
  199. </table>
  200. <br>
  201. </body>
  202. </html>