AddAssetInOutAction.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html;charset=gb2312" %>
  2. <%@ page import="java.util.*,com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  7. <title>资产出入库管理-- GForce OA 2.0</title>
  8. <link href="../css/txt.jsp" rel="stylesheet" type="text/css">
  9. </HEAD>
  10. <%
  11. Request m_request = new Request(request);
  12. String strOperation = m_request.GetString("OperationType");
  13. int iSysDirID = m_request.GetInt("SysDirID");
  14. AssetInOutManager manager = new AssetInOutManager();
  15. int intAssetInOutID = 0;
  16. intAssetInOutID = manager.InsertRecord(new Request(request));
  17. if(intAssetInOutID >= 0)
  18. {
  19.   String strApproveType = "";
  20.   if(strOperation.equalsIgnoreCase("BuyApply"))
  21.   {
  22.     strApproveType="采购申请";
  23.   }
  24.   else if(strOperation.equalsIgnoreCase("UseApply"))
  25.   {
  26.     strApproveType="领用申请";
  27.   }
  28.   int iMaxApproveLevel = m_request.GetInt("ApproveLevel");
  29.   for(int i=0;i<iMaxApproveLevel;i++)
  30.   {
  31.     ApproveRecordManager.insertApproveRecord(strApproveType,intAssetInOutID,m_request.GetInt("ApproveUserID" + (i+1)),i+1);
  32.   }
  33. %>
  34. <script language="JavaScript" type="text/JavaScript">
  35. alert("记录增加成功!");
  36. window.location="AssetInOutManage.jsp?SysDirID=<%=iSysDirID%>&OperationType=<%=strOperation%>";
  37. </script>
  38. <%
  39. }
  40. else if(intAssetInOutID == -1)
  41. {
  42. %>
  43. <script language="JavaScript" type="text/JavaScript">
  44. alert("已经存在相同的记录,增加失败!");
  45. history.back();
  46. </script>
  47. <%
  48. }
  49. else
  50. {
  51. %>
  52. <script language="JavaScript" type="text/JavaScript">
  53. alert("未知错误,增加失败,请与管理员联系!");
  54. history.back();
  55. </script>
  56. <%
  57. }
  58. %>
  59. </HTML>