officeequip_receive.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. <!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. function setPerson(deptCode, deptName, user)
  75. {
  76. form1.person.value = user;
  77. }
  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. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  88. return;
  89. }
  90. String op = ParamUtil.get(request, "op");
  91. if (op.equals("chageStorageCount")) {
  92. OfficeMgr om = new OfficeMgr();
  93. OfficeOpMgr oo = new OfficeOpMgr();
  94. boolean re = false;
  95. boolean fe = false;
  96. try {
  97.           re = om.chageStorageCount(request);
  98.   fe = oo.create(request);
  99. }
  100. catch (ErrMsgException e) {
  101. out.print(StrUtil.Alert(e.getMessage()));
  102. }
  103. if (fe && fe)
  104. out.print(StrUtil.Alert_Redirect("操作成功!", "officeequip_receive.jsp"));
  105. }
  106. Date d = new Date();
  107. String dt = DateUtil.format(d, "yyyy-MM-dd");
  108. %>
  109. <%@ include file="officeequip_inc_menu_top.jsp"%>
  110. <br>
  111. <table width="360" border="0" align="center" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  112. <form action="?op=chageStorageCount" name="form1" method="post">
  113. <tr>
  114.   <td width="938" colspan="4" class="right-title" > &nbsp;&nbsp;用品领用登记 </td>
  115. </tr>
  116. <tr>
  117.   <td colspan="4" ><table width="357" border="0" align="center" cellpadding="2" cellspacing="1" bordercolor="#8F95CF" bgcolor="#9CCFCE"  >
  118.     <tr>
  119.       <td width="98" align="center" bgcolor="#FFFFFF">用品类别:</td>
  120.       <td width="248" align="left" bgcolor="#FFFFFF" ><%
  121.   OfficeTypeDb otd = new OfficeTypeDb();
  122.   String opts = "";
  123.   Iterator ir = otd.list().iterator();
  124.   while (ir.hasNext()) {
  125.     otd = (OfficeTypeDb)ir.next();
  126.     opts += "<option value='" + otd.getId() + "'>" + otd.getName() + "</option>";
  127.   }
  128.   %>
  129.         <select name="typeId" id="typeId" onChange="getOfficeEquipOfType(form1.typeId.value)">
  130.         <option value="" selected>-----请选择-----</option>
  131.         <%=opts%>
  132.       </select>
  133.         <input name=type type="hidden" value="<%=0%>">
  134.       </td>
  135.       </tr>
  136.     <tr>
  137.       <td align="center" bgcolor="#FFFFFF" >用品名称:</td>
  138.       <td align="left" bgcolor="#FFFFFF"><%
  139.   String opts1 = "";
  140.   int total =0 ;
  141.   OfficeDb od = new OfficeDb();
  142.   if (!strTypeId.equals("")) {
  143.   String sql = "select id from office_equipment where typeId=" + strTypeId;
  144.   Iterator ir1 = od.list(sql).iterator();
  145.   while (ir1.hasNext()) {
  146.  od = (OfficeDb)ir1.next();
  147.  opts1 += "<option value='" + od.getId() + "'>" + od.getOfficeName() + "</option>";
  148.      total += od.getStorageCount();
  149.   }
  150.   }
  151.   %>
  152.         <select name="equipId" id="equipId" onChange="getEquipOfType(form1.equipId.value)">
  153.         <option selected>-----请选择-----</option>
  154.         <%=opts1%>
  155.       </select></td>
  156.       </tr>
  157.     <tr>
  158.       <td align="center" bgcolor="#FFFFFF" >库存数量:</td>
  159.       <td align="left" bgcolor="#FFFFFF"><%
  160.   if (!strEquipId.equals("")) {
  161.    int equipId = Integer.parseInt(strEquipId);
  162.    od = od.getOfficeDb(equipId);
  163. total = od.getStorageCount();
  164.   }
  165.   %>
  166.         <%=total%> </td>
  167.       </tr>
  168.     <tr>
  169.       <td align="center" bgcolor="#FFFFFF" ><script>
  170.   form1.typeId.value = "<%=strTypeId%>";
  171.   </script>        
  172.         数&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;量:</td>
  173.       <td align="left" bgcolor="#FFFFFF"><script>
  174.   form1.equipId.value = "<%=strEquipId%>";
  175.   </script>   <input name="storageCount" type="text" id="storageCount" size="20" >   </td>
  176.       </tr>
  177.     <tr>
  178.       <td align="center" bgcolor="#FFFFFF" >领&nbsp;&nbsp;用&nbsp;&nbsp;人:</td>
  179.       <td align="left" bgcolor="#FFFFFF"><input name="person" type="text" id="person" size="20">
  180.         <a href="#" onClick="javascript:showModalDialog('../user_sel.jsp',window.self,'dialogWidth:480px;dialogHeight:320px;status:no;help:no;')">选择用户</a></td>
  181.       </tr>
  182.     <tr>
  183.       <td align="center" bgcolor="#FFFFFF" >时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;间&nbsp;:</td>
  184.       <td align="left" bgcolor="#FFFFFF"><input  name="opDate" type="text" value="<%=dt%>" size="20">
  185.         <img style="CURSOR: hand" onClick="SelectDate('opDate', 'yyyy-MM-dd')" src="../images/form/calendar.gif" align="absMiddle" border="0" width="26" height="26"></td>
  186.       </tr>
  187.     <tr>
  188.       <td align="center" bgcolor="#FFFFFF" >备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注:</td>
  189.       <td align="left" bgcolor="#FFFFFF"><textarea  name="abstracts"  id="abstracts" style="width:90%" rows="5"></textarea></td>
  190.     </tr>
  191.   </table></td>
  192.   </tr>
  193.  <tr> 
  194.   <td colspan="4" align="center">
  195.      <input name="submit" type="submit" class="button1"  value="提  交" > 
  196.      &nbsp;</td>
  197. </tr>
  198. </form>
  199. </table>
  200. </body>
  201. </html>