PostilDocument.aspx.cs
上传用户:cha0314
上传日期:2014-03-02
资源大小:12522k
文件大小:4k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using UDS.Components;
  12. using System.Data.SqlClient;
  13. namespace UDS.SubModule.UnitiveDocument.DocumentFlow
  14. {
  15. /// <summary>
  16. /// PostilDocument 的摘要说明。
  17. /// </summary>
  18. public class PostilDocument : System.Web.UI.Page
  19. {
  20. protected System.Web.UI.WebControls.Button cmdOK;
  21. protected System.Web.UI.WebControls.TextBox txtPostil;
  22. private long DocID;
  23. private int Operation;
  24. protected System.Web.UI.WebControls.Label labTitle;
  25. private string UserName;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. // 在此处放置用户代码以初始化页面
  29. //cmdCancel.Attributes.Add("onclick","javascript:window.close();");
  30. DocID = Int32.Parse(Request["DocID"].ToString());
  31. Operation = Int32.Parse(Request["Operation"].ToString());
  32. UserName = Request.Cookies["UserName"].Value.ToString();
  33. switch(Operation)
  34. {
  35. case 1:
  36. labTitle.Text ="通过批注:";
  37. break;
  38. case 2:
  39. labTitle.Text ="失败批注:";
  40. break;
  41. case 3:
  42. labTitle.Text ="完成批注:";
  43. break;
  44. default:
  45. break;
  46. }
  47. }
  48. #region Web Form Designer generated code
  49. override protected void OnInit(EventArgs e)
  50. {
  51. //
  52. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  53. //
  54. InitializeComponent();
  55. base.OnInit(e);
  56. }
  57. /// <summary>
  58. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  59. /// 此方法的内容。
  60. /// </summary>
  61. private void InitializeComponent()
  62. {    
  63. this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
  64. this.Load += new System.EventHandler(this.Page_Load);
  65. }
  66. #endregion
  67. private void cmdOK_Click(object sender, System.EventArgs e)
  68. {
  69. UDS.Components.DocumentFlow df =new UDS.Components.DocumentFlow();
  70. df.AddPostil(UserName,DocID,txtPostil.Text,Operation);
  71. switch(Operation)
  72. {
  73. case 1:
  74. NextDocument(DocID);
  75. break;
  76. case 2:
  77. df.FaileDocument(DocID);
  78. break;
  79. case 3:
  80. df.FinishDocument(DocID);
  81. break;
  82. default:
  83. break;
  84. }
  85. df = null;
  86. Server.Transfer("ListDocument.aspx?DisplayType=3");
  87. //Response.Write("<script laguage='javascript'>window.close();</script>");
  88. }
  89. private void NextDocument(long lDocID)
  90. {
  91. long DefineID;
  92. UDS.Components.DocumentFlow df =new UDS.Components.DocumentFlow();
  93. DefineID = df.GetNextDefineID(lDocID);
  94. if(DefineID>0)
  95. {
  96. //发送到下一环节
  97. switch(df.GetTacheRule(DefineID))
  98. {
  99. case 0: //按项目走
  100. if(df.GetParentProjectAccount(UserName)>0) //有上级项目
  101. {
  102. df = null;
  103. Server.Transfer("SelectProject.aspx?DocID=" + lDocID.ToString() + "&DefineID=" + DefineID.ToString());
  104. }
  105. else //没有上级项目
  106. {
  107. Response.Write("<script language='javascript'>alert('" + df.DoMessage(-3,lDocID) + "');</script>");
  108. df = null;
  109. }
  110. break;
  111. case 1: //按部门走
  112. Response.Write("<script language='javascript'>alert('" + df.DoMessage(df.PostDocument(UserName,DocID,DefineID,0),DocID) + "');</script>");
  113. break;
  114. case 2: //其他:环节全部的人都走
  115. break;
  116. default:
  117. break;
  118. }
  119. }
  120. else
  121. df.FinishDocument(lDocID); //没有下一环节,结束
  122. df = null;
  123. }
  124. }
  125. }