officeequip_receive_search.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.SkinUtil"%>
  6. <%@ page import = "com.redmoon.oa.officeequip.*"%>
  7. <%@ page import = "java.util.*"%>
  8. <%@ page import = "cn.js.fan.db.*"%>
  9. <%@ page import = "cn.js.fan.web.*"%>
  10. <%
  11. String strTypeId = ParamUtil.get(request, "typeId");
  12. String strEquipId =ParamUtil.get(request, "equipId");
  13. %>
  14. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  18. <title>办公用品领用查询</title>
  19. <link href="../common.css" rel="stylesheet" type="text/css">
  20. <style type="text/css">
  21. <!--
  22. .style2 {font-size: 14px}
  23. .STYLE3 {color: #313031}
  24. .STYLE4 {color: #0033FF}
  25. -->
  26. </style>
  27. <script language="JavaScript" type="text/JavaScript">
  28. <!--
  29. function findObj(theObj, theDoc)
  30. {
  31.   var p, i, foundObj;
  32.   
  33.   if(!theDoc) theDoc = document;
  34.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  35.   {
  36.     theDoc = parent.frames[theObj.substring(p+1)].document;
  37.     theObj = theObj.substring(0,p);
  38.   }
  39.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  40.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  41.     foundObj = theDoc.forms[i][theObj];
  42.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  43.     foundObj = findObj(theObj,theDoc.layers[i].document);
  44.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  45.   
  46.   return foundObj;
  47. }
  48. var GetDate=""; 
  49. function SelectDate(ObjName,FormatDate){
  50. var PostAtt = new Array;
  51. PostAtt[0]= FormatDate;
  52. PostAtt[1]= findObj(ObjName);
  53. GetDate = showModalDialog("../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  54. }
  55. function SetDate()
  56. findObj(ObjName).value = GetDate; 
  57. }
  58. function setPerson(deptCode, deptName, user)
  59. {
  60. form1.person.value = user;
  61. }
  62. //-->
  63. </script>
  64. <script>
  65. var oldTypeId = "<%=strTypeId%>";
  66. function getOfficeEquipOfType(typeId) {
  67. if (typeId=="") {
  68. alert("请选择类别");
  69. form1.typeId.value = oldTypeId;
  70. return;
  71. }
  72. window.location.href = "?typeId=" + typeId;
  73. }
  74. var oldEquipId = "<%=strEquipId%>";
  75. function getEquipOfType(equipId) {
  76. if (equipId=="") {
  77. alert("请选择类别");
  78. form1.equipId.value = oldEquipId;
  79. return;
  80. }
  81. window.location.href = "?equipId=" + equipId + "&typeId=" + oldTypeId;
  82. }
  83. </script>
  84. </head>
  85. <body>
  86. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  87. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  88. <%
  89. String priv = "officeequip";
  90. if (!privilege.isUserPrivValid(request, priv))
  91. {
  92. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  93. return;
  94. }
  95. %>
  96. <%@ include file="officeequip_inc_menu_top.jsp"%>
  97. <br>
  98. <table width="787" border="0" align="center" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  99. <form action="officeequip_receive_list.jsp?op=search" name="form1" method="post">
  100. <tr>
  101.   <td colspan="4" class="right-title" > &nbsp;&nbsp;办公领用查询 </td>
  102. </tr>
  103. <tr align="left">
  104.   <td colspan="4" ><table width="805" border="0" align="center" cellpadding="2" cellspacing="1" bordercolor="#8F95CF" bgcolor="#9CCFCE"  >
  105.     <tr align="left">
  106.       <td width="84" bgcolor="#FFFFFF">用品类别:</td>
  107.       <td width="171" bgcolor="#FFFFFF" ><%
  108.   OfficeTypeDb otd = new OfficeTypeDb();
  109.   String opts = "";
  110.   Iterator ir = otd.list().iterator();
  111.   while (ir.hasNext()) {
  112.     otd = (OfficeTypeDb)ir.next();
  113.     opts += "<option value='" + otd.getId() + "'>" + otd.getName() + "</option>";
  114.   }
  115.   %>
  116.         <select name="typeId" id="typeId" onChange="getOfficeEquipOfType(form1.typeId.value)">
  117.           <option value="" selected>-----请选择-----</option>
  118.           <%=opts%>
  119.         </select></td>
  120.       <td width="99" bgcolor="#FFFFFF" >用品名称:</td>
  121.       <td width="165" bgcolor="#FFFFFF"><%
  122.   String opts1 = "";
  123.   int total =0 ;
  124.   OfficeDb od = new OfficeDb();
  125.   if (!strTypeId.equals("")) {
  126.   String sql = "select id from office_equipment where typeId=" + strTypeId;
  127.   Iterator ir1 = od.list(sql).iterator();
  128.   while (ir1.hasNext()) {
  129.  od = (OfficeDb)ir1.next();
  130.  opts1 += "<option value='" + od.getId() + "'>" + od.getOfficeName() + "</option>";
  131.      total += od.getStorageCount();
  132.   }
  133.   }
  134.   %>
  135.         <select name="equipId" id="equipId" onChange="getEquipOfType(form1.equipId.value)">
  136.         <option selected>-----请选择-----</option>
  137.         <%=opts1%>
  138.       </select></td>
  139.       <td width="68" bgcolor="#FFFFFF">领用人:</td>
  140.       <td width="187" bgcolor="#FFFFFF"><input name="person" type="text" id="person" size="20">
  141.         &nbsp;<a href="#" onClick="javascript:showModalDialog('../user_sel.jsp',window.self,'dialogWidth:480px;dialogHeight:320px;status:no;help:no;')">选择用户</a></td>
  142.     </tr>
  143.     <tr align="left">
  144.       <td bgcolor="#FFFFFF" ><script>
  145.   form1.typeId.value = "<%=strTypeId%>";
  146.   </script>
  147.      开始时间:</td>
  148.       <td bgcolor="#FFFFFF"  ><input  name="beginDate" type="text"size="20">
  149.         &nbsp;&nbsp;<img style="CURSOR: hand" onClick="SelectDate('beginDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  150.       <td bgcolor="#FFFFFF"><script>
  151.   form1.equipId.value = "<%=strEquipId%>";
  152.   </script>   
  153.        结束时间:</td>
  154.       <td bgcolor="#FFFFFF" ><input name="endDate" type="text" id="endDate" size="20">
  155.         <img style="CURSOR: hand" onClick="SelectDate('endDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  156.       <td bgcolor="#FFFFFF">&nbsp;</td>
  157.       <td bgcolor="#FFFFFF">&nbsp;</td>
  158.     </tr>
  159.   </table></td>
  160.   </tr>
  161.  <tr> 
  162.   <td colspan="4" align="center">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  163.     <input name="submit" type="submit" class="button1"  value=" 查 询 " ></td>
  164. </tr>
  165. </form>
  166. </table>
  167. </body>
  168. </html>