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

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. <%
  8. String strTypeId = ParamUtil.get(request, "typeId");
  9. String strEquipId =ParamUtil.get(request, "equipId");
  10. %>
  11. <html>
  12. <head>
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  14. <title>用品领用</title>
  15. <link href="../common.css" rel="stylesheet" type="text/css">
  16. <style type="text/css">
  17. <!--
  18. .style2 {font-size: 14px}
  19. .STYLE3 {color: #313031}
  20. -->
  21. </style>
  22. <script>
  23. var oldTypeId = "<%=strTypeId%>";
  24. function getOfficeEquipOfType(typeId) {
  25. if (typeId=="") {
  26. alert("请选择类别");
  27. form1.typeId.value = oldTypeId;
  28. return;
  29. }
  30. window.location.href = "?typeId=" + typeId;
  31. }
  32. var oldEquipId = "<%=strEquipId%>";
  33. function getEquipOfType(equipId) {
  34. if (equipId=="") {
  35. alert("请选择类别");
  36. form1.equipId.value = oldEquipId;
  37. return;
  38. }
  39. window.location.href = "?equipId=" + equipId + "&typeId=" + oldTypeId;
  40. }
  41. </script>
  42. <script language="JavaScript" type="text/JavaScript">
  43. <!--
  44. function findObj(theObj, theDoc)
  45. {
  46.   var p, i, foundObj;
  47.   
  48.   if(!theDoc) theDoc = document;
  49.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  50.   {
  51.     theDoc = parent.frames[theObj.substring(p+1)].document;
  52.     theObj = theObj.substring(0,p);
  53.   }
  54.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  55.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  56.     foundObj = theDoc.forms[i][theObj];
  57.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  58.     foundObj = findObj(theObj,theDoc.layers[i].document);
  59.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  60.   
  61.   return foundObj;
  62. }
  63. var GetDate=""; 
  64. function SelectDate(ObjName,FormatDate){
  65. var PostAtt = new Array;
  66. PostAtt[0]= FormatDate;
  67. PostAtt[1]= findObj(ObjName);
  68. GetDate = showModalDialog("../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  69. }
  70. function SetDate()
  71. findObj(ObjName).value = GetDate; 
  72. }
  73. function setPerson(deptCode, deptName, user)
  74. {
  75. form1.person.value = user;
  76. }
  77. //-->
  78. </script>
  79. </head>
  80. <body>
  81. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  82. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  83. <%
  84. String priv="officeequip";
  85. if (!privilege.isUserPrivValid(request, priv)) {
  86. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  87. return;
  88. }
  89. String op = ParamUtil.get(request, "op");
  90. if (op.equals("chageStorageCount")) {
  91. OfficeMgr om = new OfficeMgr();
  92. OfficeOpMgr oo = new OfficeOpMgr();
  93. boolean re = false;
  94. boolean fe = false;
  95. try {
  96.   re = om.chageStorageCount(request);
  97.   fe = oo.create(request);
  98. }
  99. catch (ErrMsgException e) {
  100. out.print(StrUtil.Alert(e.getMessage()));
  101. }
  102. if (fe && re)
  103. out.print(StrUtil.Alert_Redirect("操作成功!", "officeequip_receive.jsp"));
  104. }
  105. Date d = new Date();
  106. String dt = DateUtil.format(d, "yyyy-MM-dd");
  107. %>
  108. <%@ include file="officeequip_inc_menu_top.jsp"%>
  109. <br>
  110. <table width="360" border="0" align="center" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  111. <form action="?op=chageStorageCount" name="form1" method="post">
  112. <tr>
  113.   <td width="938" colspan="4" class="right-title" > &nbsp;&nbsp;用品借出登记 </td>
  114. </tr>
  115. <tr>
  116.   <td colspan="4" ><table width="357" border="0" align="center" cellpadding="2" cellspacing="1" bordercolor="#8F95CF" bgcolor="#9CCFCE"  >
  117.     <tr>
  118.       <td width="95" align="center" bgcolor="#FFFFFF">用品类别:</td>
  119.       <td width="251" align="left" bgcolor="#FFFFFF" ><%
  120.   OfficeTypeDb otd = new OfficeTypeDb();
  121.   String opts = "";
  122.   Iterator ir = otd.list().iterator();
  123.   while (ir.hasNext()) {
  124.     otd = (OfficeTypeDb)ir.next();
  125.     opts += "<option value='" + otd.getId() + "'>" + otd.getName() + "</option>";
  126.   }
  127.   %>
  128.         <select name="typeId" id="typeId" onChange="getOfficeEquipOfType(form1.typeId.value)">
  129.         <option value="" selected>-----请选择-----</option>
  130.         <%=opts%>
  131.       </select>
  132.         <input name=type type="hidden" value="<%=1%>">
  133.       </td>
  134.       </tr>
  135.     <tr>
  136.       <td align="center" bgcolor="#FFFFFF" >用品名称:</td>
  137.       <td align="left" bgcolor="#FFFFFF"><%
  138.   String opts1 = "";
  139.   int total =0 ;
  140.   OfficeDb od = new OfficeDb();
  141.   if (!strTypeId.equals("")) {
  142.   String sql = "select id from office_equipment where typeId=" + strTypeId;
  143.   Iterator ir1 = od.list(sql).iterator();
  144.   while (ir1.hasNext()) {
  145.  od = (OfficeDb)ir1.next();
  146.  opts1 += "<option value='" + od.getId() + "'>" + od.getOfficeName() + "</option>";
  147.      total += od.getStorageCount();
  148.   }
  149.   }
  150.   %>
  151.         <select name="equipId" id="equipId" onChange="getEquipOfType(form1.equipId.value)">
  152.         <option value="" selected>-----请选择-----</option>
  153.         <%=opts1%>
  154.       </select></td>
  155.       </tr>
  156.     <tr>
  157.       <td align="center" bgcolor="#FFFFFF" >库存数量:</td>
  158.       <td align="left" bgcolor="#FFFFFF"><%
  159.   if (!strEquipId.equals("")) {
  160.    int equipId = Integer.parseInt(strEquipId);
  161.    od = od.getOfficeDb(equipId);
  162. total = od.getStorageCount();
  163.   }
  164.   %>
  165.         <%=total%> </td>
  166.       </tr>
  167.     <tr>
  168.       <td align="center" bgcolor="#FFFFFF" ><script>
  169.   form1.typeId.value = "<%=strTypeId%>";
  170.   </script>        
  171.       借用数量:</td>
  172.       <td align="left" bgcolor="#FFFFFF"><script>
  173.   form1.equipId.value = "<%=strEquipId%>";
  174.   </script>   <input name="storageCount" type="text" id="storageCount" size="20"></td>
  175.       </tr>
  176.     <tr>
  177.       <td align="center" bgcolor="#FFFFFF" >借&nbsp;&nbsp;用&nbsp;&nbsp;人:</td>
  178.       <td align="left" bgcolor="#FFFFFF"><input name="person" type="text" id="person" size="20">
  179.         &nbsp;<a href="#" onClick="javascript:showModalDialog('../user_sel.jsp',window.self,'dialogWidth:480px;dialogHeight:320px;status:no;help:no;')">选择用户</a></td>
  180.       </tr>
  181.     <tr>
  182.       <td align="center" bgcolor="#FFFFFF" >借出时间:</td>
  183.       <td align="left" bgcolor="#FFFFFF"><input  name="opDate" type="text" value="<%=dt%>" size="20">
  184.         <img style="CURSOR: hand" onClick="SelectDate('opDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  185.       </tr>
  186.     <tr>
  187.       <td align="center" bgcolor="#FFFFFF" >备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注:</td>
  188.       <td align="left" bgcolor="#FFFFFF"><textarea  name="abstracts"  id="abstracts" style="width:90%" rows="5"></textarea></td>
  189.     </tr>
  190.   </table></td>
  191.   </tr>
  192.  <tr> 
  193.   <td colspan="4" align="center">
  194.      <input name="submit" type="submit" class="button1"  value="提  交" > 
  195.      &nbsp;</td>
  196. </tr>
  197. </form>
  198. </table>
  199. </body>
  200. </html>