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

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. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  12. <html>
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <title>用品领用</title>
  16. <link href="../common.css" rel="stylesheet" type="text/css">
  17. <style type="text/css">
  18. <!--
  19. .style2 {font-size: 14px}
  20. .STYLE3 {color: #313031}
  21. -->
  22. </style>
  23. <script>
  24. var oldTypeId = "<%=strTypeId%>";
  25. function getOfficeEquipOfType(typeId) {
  26. if (typeId=="") {
  27. alert("请选择类别");
  28. form1.typeId.value = oldTypeId;
  29. return;
  30. }
  31. window.location.href = "?typeId=" + typeId;
  32. }
  33. var oldEquipId = "<%=strEquipId%>";
  34. function getEquipOfType(equipId) {
  35. if (equipId=="") {
  36. alert("请选择类别");
  37. form1.equipId.value = oldEquipId;
  38. return;
  39. }
  40. window.location.href = "?equipId=" + equipId + "&typeId=" + oldTypeId;
  41. }
  42. </script>
  43. <script language="JavaScript" type="text/JavaScript">
  44. <!--
  45. function findObj(theObj, theDoc)
  46. {
  47.   var p, i, foundObj;
  48.   
  49.   if(!theDoc) theDoc = document;
  50.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  51.   {
  52.     theDoc = parent.frames[theObj.substring(p+1)].document;
  53.     theObj = theObj.substring(0,p);
  54.   }
  55.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  56.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  57.     foundObj = theDoc.forms[i][theObj];
  58.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  59.     foundObj = findObj(theObj,theDoc.layers[i].document);
  60.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  61.   
  62.   return foundObj;
  63. }
  64. var GetDate=""; 
  65. function SelectDate(ObjName,FormatDate){
  66. var PostAtt = new Array;
  67. PostAtt[0]= FormatDate;
  68. PostAtt[1]= findObj(ObjName);
  69. GetDate = showModalDialog("../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  70. }
  71. function SetDate()
  72. findObj(ObjName).value = GetDate; 
  73. }
  74. //-->
  75. </script>
  76. </head>
  77. <body>
  78. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  79. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  80. <%
  81. String priv="officetype";
  82. if (!privilege.isUserPrivValid(request, priv)) {
  83. //out.println(fchar.makeErrMsg("对不起,您不具有发起流程的权限!"));
  84. //return;
  85. }
  86. String op = ParamUtil.get(request, "op");
  87. if (op.equals("chageStorageCount")) {
  88. OfficeMgr om = new OfficeMgr();
  89. boolean re = false;
  90. try {
  91.   re = om.chStorageCount(request);
  92. }
  93. catch (ErrMsgException e) {
  94. out.print(StrUtil.Alert(e.getMessage()));
  95. }
  96. if (re )
  97. out.print(StrUtil.Alert_Redirect("操作成功!", "officeequip_add_officeequip.jsp"));
  98. }
  99. Date d = new Date();
  100. String dt = DateUtil.format(d, "yyyy-MM-dd");
  101. %>
  102. <table width="663" border="0" align="center" cellpadding="3" cellspacing="0" class="tableframe">
  103. <form action="?op=chageStorageCount" name="form1" method="post">
  104. <tr>
  105.   <td colspan="4" class="right-title" > &nbsp;&nbsp;用品入库登记</td>
  106. </tr>
  107. <tr>
  108.   <td colspan="4" ><table width="657" border="0" align="center">
  109.       <tr>
  110.         <td width="111">用品类别:</td>
  111.         <td width="189"><%
  112.   OfficeTypeDb otd = new OfficeTypeDb();
  113.   String opts = "";
  114.   Iterator ir = otd.list().iterator();
  115.   while (ir.hasNext()) {
  116.     otd = (OfficeTypeDb)ir.next();
  117.     opts += "<option value='" + otd.getId() + "'>" + otd.getName() + "</option>";
  118.   }
  119.   %>
  120.           <select name="typeId" id="typeId" onChange="getOfficeEquipOfType(form1.typeId.value)">
  121.           <option value="" selected>-----请选择-----</option>
  122.           <%=opts%>
  123.         </select>
  124.  <script>
  125.      form1.typeId.value = "<%=strTypeId%>";
  126.     </script> </td>
  127.         <td width="72">用品名称:</td>
  128.         <td width="257"><%
  129.   String opts1 = "";
  130.   int total =0 ;
  131.   OfficeDb od = new OfficeDb();
  132.   if (!strTypeId.equals("")) {
  133.   String sql = "select id from office_equipment where typeId=" + strTypeId;
  134.   Iterator ir1 = od.list(sql).iterator();
  135.   while (ir1.hasNext()) {
  136.  od = (OfficeDb)ir1.next();
  137.  opts1 += "<option value='" + od.getId() + "'>" + od.getOfficeName() + "</option>";
  138.      total += od.getStorageCount();
  139.   }
  140.   }
  141.   %>
  142.           <select name="equipId" id="equipId" onChange="getEquipOfType(form1.equipId.value)">
  143.           <option selected>-----请选择-----</option>
  144.           <%=opts1%>
  145.         </select>
  146. <script>
  147.   form1.equipId.value = "<%=strEquipId%>";
  148.   </script> </td>
  149.       </tr>
  150.       <tr>
  151.         <td>库存量:</td>
  152.         <td><%
  153.   if (!strEquipId.equals("")) {
  154.    int equipId = Integer.parseInt(strEquipId);
  155.    od = od.getOfficeDb(equipId);
  156. total = od.getStorageCount();
  157.   }
  158.   %>
  159.           <%=total%> </td>
  160.         <td>数量:</td>
  161.         <td><input name="storageCount" type="text" id="storageCount" size="20"></td>
  162.       </tr>
  163.     </table>
  164.     <p>&nbsp;</p></td>
  165.   </tr>
  166.  <tr> 
  167.   <td colspan="4" align="center">
  168.      <input name="submit" type="submit" class="button1"  value="提  交" > 
  169.      &nbsp;</td>
  170. </tr>
  171. </form>
  172. </table>
  173. </body>
  174. </html>