officeequip_return.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. //-->
  59. </script>
  60. <script>
  61. var oldTypeId = "<%=strTypeId%>";
  62. function getOfficeEquipOfType(typeId) {
  63. if (typeId=="") {
  64. alert("请选择类别");
  65. form1.typeId.value = oldTypeId;
  66. return;
  67. }
  68. window.location.href = "?typeId=" + typeId;
  69. }
  70. var oldEquipId = "<%=strEquipId%>";
  71. function getEquipOfType(equipId) {
  72. if (equipId=="") {
  73. alert("请选择类别");
  74. form1.equipId.value = oldEquipId;
  75. return;
  76. }
  77. window.location.href = "?equipId=" + equipId + "&typeId=" + oldTypeId;
  78. }
  79. </script>
  80. </head>
  81. <body>
  82. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  83. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  84. <%
  85. String priv = "officeequip";
  86. if (!privilege.isUserPrivValid(request, priv))
  87. {
  88. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  89. return;
  90. }
  91. %>
  92. <table width="787" border="0" align="center" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  93. <form action="officeequip_return_list.jsp?op=search" name="form1" method="post">
  94. <tr>
  95.   <td colspan="4" class="right-title" > &nbsp;&nbsp;办公借出查询 </td>
  96. </tr>
  97. <tr align="left">
  98.   <td colspan="4" ><table width="805" border="0" align="center" cellpadding="2" cellspacing="1" bordercolor="#8F95CF" bgcolor="#9CCFCE"  >
  99.     <tr align="left">
  100.       <td width="84" bgcolor="#FFFFFF">用品类别:</td>
  101.       <td width="171" bgcolor="#FFFFFF" ><%
  102.   OfficeTypeDb otd = new OfficeTypeDb();
  103.   String opts = "";
  104.   Iterator ir = otd.list().iterator();
  105.   while (ir.hasNext()) {
  106.     otd = (OfficeTypeDb)ir.next();
  107.     opts += "<option value='" + otd.getId() + "'>" + otd.getName() + "</option>";
  108.   }
  109.   %>
  110.         <select name="typeId" id="typeId" onChange="getOfficeEquipOfType(form1.typeId.value)">
  111.           <option value="" selected>-----请选择-----</option>
  112.           <%=opts%>
  113.         </select></td>
  114.       <td width="99" bgcolor="#FFFFFF" >用品名称:</td>
  115.       <td width="165" bgcolor="#FFFFFF"><%
  116.   String opts1 = "";
  117.   int total =0 ;
  118.   OfficeDb od = new OfficeDb();
  119.   if (!strTypeId.equals("")) {
  120.   String sql = "select id from office_equipment where typeId=" + strTypeId;
  121.   Iterator ir1 = od.list(sql).iterator();
  122.   while (ir1.hasNext()) {
  123.  od = (OfficeDb)ir1.next();
  124.  opts1 += "<option value='" + od.getId() + "'>" + od.getOfficeName() + "</option>";
  125.      total += od.getStorageCount();
  126.   }
  127.   }
  128.   %>
  129.         <select name="equipId" id="equipId" onChange="getEquipOfType(form1.equipId.value)">
  130.         <option selected>-----请选择-----</option>
  131.         <%=opts1%>
  132.       </select></td>
  133.       <td width="68" bgcolor="#FFFFFF">借用人:</td>
  134.       <td width="187" bgcolor="#FFFFFF"><input name="person" type="text" id="person" size="20"></td>
  135.     </tr>
  136.     <tr align="left">
  137.       <td bgcolor="#FFFFFF" ><script>
  138.   form1.typeId.value = "<%=strTypeId%>";
  139.   </script>
  140.      开始时间:</td>
  141.       <td bgcolor="#FFFFFF"  ><input  name="beginDate" type="text"size="20">
  142.         &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>
  143.       <td bgcolor="#FFFFFF"><script>
  144.   form1.equipId.value = "<%=strEquipId%>";
  145.   </script>   
  146.        结束时间:</td>
  147.       <td bgcolor="#FFFFFF" ><input name="endDate" type="text" id="endDate" size="20">
  148.         <img style="CURSOR: hand" onClick="SelectDate('endDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  149.       <td bgcolor="#FFFFFF">&nbsp;</td>
  150.       <td bgcolor="#FFFFFF">&nbsp;</td>
  151.     </tr>
  152.   </table></td>
  153.   </tr>
  154.  <tr> 
  155.   <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;
  156.     <input name="submit" type="submit" class="button1"  value="查    询  " ></td>
  157. </tr>
  158. </form>
  159. </table>
  160. </body>
  161. </html>