frmMattersApplyView.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. using LYFZ.BLL;
  2. using LYFZ.Model;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.MainBusiness.OAShopManagement
  12. {
  13. public partial class frmMattersApplyView : LYFZ.Software.UI.OAShopManagement.frmMattersApplyView
  14. {
  15. public frmMattersApplyView()
  16. {
  17. this.btnClose.Click += btnClose_Click;
  18. this.btnSave.Click += btnSave_Click;
  19. this.Load += frmTeskView_Load;
  20. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MattersApplication, CustomAttributes.OperatingAuthority.Audit))
  21. { this.btnSave.Enabled = true; }
  22. else
  23. { this.btnSave.Enabled = false; }
  24. }
  25. BLL_ErpShopEvententry Bll = new BLL_ErpShopEvententry();
  26. string _id = "";
  27. /// <summary>
  28. /// ID
  29. /// </summary>
  30. public string ID { get { return this._id; } set { this._id = value; } }
  31. Model_ErpShopEvententry model = new Model_ErpShopEvententry();
  32. void frmTeskView_Load(object sender, EventArgs e)
  33. {
  34. comboBoxApplyState.ReadOnly = true;
  35. if (!string.IsNullOrEmpty(this.ID))
  36. {
  37. model = Bll.GetModel(Convert.ToInt32(ID));
  38. //申请人
  39. this.labPriority.Text = frmMattersApply.UserIDToName(model.Matter_UpdateName);
  40. this.lbCategory.Text = LYFZ.BLL.WageStatisticsProcess.GetClassCodeToCalssName(model.Matter_Category);
  41. //申请时间
  42. this.labReleaseDatetime.Text = model.Matter_CreateDatetime.ToString("yyyy-MM-dd HH:mm");
  43. //申请内容
  44. this.txtApplyInfo.Text = model.Matter_content;
  45. //审批状态
  46. this.comboBoxApplyState.SelectedText = model.Matter_state;
  47. //审批人
  48. this.labPostedby.Text = Bll.Name(model.Matter_UpdateName);
  49. //审批意见
  50. this.txtApplyReply.Text = model.Matter_opinion;
  51. this.txtLeadershipInstruction.Text = model.Matter_LeadershipInstruction;
  52. this.txtTitle.Text = model.Matter_Title;
  53. }
  54. switch (_ApplyType)
  55. {
  56. case MattersApplyType.批示领导:
  57. this.txtApplyReply.Enabled = false;
  58. this.txtLeadershipInstruction.Enabled = true;
  59. this.btnSave.Enabled = true;
  60. break;
  61. case MattersApplyType.申请人:
  62. this.txtApplyReply.Enabled = false;
  63. this.txtLeadershipInstruction.Enabled = false;
  64. this.btnSave.Enabled = false;
  65. break;
  66. case MattersApplyType.审核人:
  67. this.txtApplyReply.Enabled = true;
  68. this.txtLeadershipInstruction.Enabled = false;
  69. this.btnSave.Enabled = true;
  70. break;
  71. }
  72. this.comboBoxApplyState.Items.Clear();
  73. // this.comboBoxApplyState.Items.Add(state.申请中.ToString());
  74. this.comboBoxApplyState.Items.Add(state.申请通过.ToString());
  75. this.comboBoxApplyState.Items.Add(state.申请打回.ToString());
  76. }
  77. /// <summary>
  78. /// 审核按钮
  79. /// </summary>
  80. /// <param name="sender"></param>
  81. /// <param name="e"></param>
  82. void btnSave_Click(object sender, EventArgs e)
  83. {
  84. if (model.ID > 0)
  85. {
  86. if (_ApplyType == MattersApplyType.审核人)
  87. {
  88. if (string.IsNullOrEmpty(txtApplyReply.Text))
  89. {
  90. MessageBoxCustom.Show("请输入审批意见"); return;
  91. }
  92. if (txtApplyReply.Text.Trim().Length > 200)
  93. {
  94. MessageBoxCustom.Show("审批意见不能超过200个字"); return;
  95. }
  96. model.Matter_opinion = this.txtApplyReply.Text.Trim();
  97. model.Matter_UpdateDatetime = SDateTime.Now;
  98. model.Matter_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  99. }
  100. else if (_ApplyType == MattersApplyType.批示领导)
  101. {
  102. if (string.IsNullOrEmpty(txtLeadershipInstruction.Text))
  103. {
  104. MessageBoxCustom.Show("请输入领导批示意见"); return;
  105. }
  106. if (txtLeadershipInstruction.Text.Trim().Length > 200)
  107. {
  108. MessageBoxCustom.Show("领导批示意见不能超过200个字"); return;
  109. }
  110. model.Matter_LeadershipInstruction = this.txtLeadershipInstruction.Text.Trim();
  111. model.Matter_InstructedPeople = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  112. model.Matter_InstructedTime = SDateTime.Now;
  113. }
  114. model.Matter_state = this.comboBoxApplyState.Text.Trim();
  115. if (model.Matter_state == state.申请中.ToString())
  116. {
  117. MessageBoxCustom.Show("请选择审核状态"); return;
  118. }
  119. if (Bll.Update(model))
  120. {
  121. MessageBoxCustom.Show("审核成功");
  122. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  123. }
  124. else
  125. {
  126. MessageBoxCustom.Show("审核失败");
  127. }
  128. }
  129. }
  130. void btnClose_Click(object sender, EventArgs e)
  131. { this.Close(); }
  132. MattersApplyType _ApplyType = MattersApplyType.申请人;
  133. /// <summary>
  134. /// 操作人类型 申请,审核
  135. /// </summary>
  136. internal MattersApplyType ApplyType
  137. {
  138. get { return _ApplyType; }
  139. set { _ApplyType = value; }
  140. }
  141. }
  142. }