FrmStatisticalInquiryEmployees.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  11. {
  12. public partial class FrmStatisticalInquiryEmployees : LYFZ.Software.UI.StatisticalInquiry.FrmStatisticalInquiryEmployees
  13. {
  14. private DataTable tbl_View = new DataTable();
  15. public FrmStatisticalInquiryEmployees()
  16. {
  17. this.Shown += FrmStatisticalInquiryEmployees_Shown;
  18. this.txtTsorder_OpenSingle.ComboBoxTree_NodeMouseClick += txtTsorder_OpenSingle_ComboBoxTree_NodeMouseClick;
  19. this.btnClose.Click += btnClose_Click;
  20. }
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. void FrmStatisticalInquiryEmployees_Shown(object sender, EventArgs e)
  27. {
  28. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtTsorder_OpenSingle, IsFirstNodeNull: true);
  29. if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.SatisticalInquiryEmployeesCompetence, CustomAttributes.OperatingAuthority.ViewAll))
  30. { this.txtTsorder_OpenSingle.Enabled = false; }
  31. if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Account != LYFZ.AuthorizeUserName.AdministratorsName)
  32. {
  33. this.txtTsorder_OpenSingle.Tag = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  34. this.txtTsorder_OpenSingle.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  35. }
  36. this.PublicFunctionRows();
  37. }
  38. /// <summary>
  39. /// 选择人员
  40. /// </summary>
  41. /// <param name="sender"></param>
  42. /// <param name="e"></param>
  43. void txtTsorder_OpenSingle_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  44. {
  45. this.PublicFunctionRows();
  46. }
  47. /// <summary>
  48. /// 关闭
  49. /// </summary>
  50. /// <param name="sender"></param>
  51. /// <param name="e"></param>
  52. void btnClose_Click(object sender, EventArgs e)
  53. {
  54. this.Close();
  55. }
  56. /// <summary>
  57. /// 创建行
  58. /// </summary>
  59. void PublicFunctionRows()
  60. {
  61. string StrWhere = " Where 1 = 1";
  62. if (txtTsorder_OpenSingle.Text.ToString().Trim().Length > 0)
  63. { StrWhere += " And User_EmployeeID = '" + txtTsorder_OpenSingle.Tag.ToString() + "'"; }
  64. else
  65. { StrWhere += " And User_Account != 'admin'"; }
  66. DataTable newTable = new DataTable();
  67. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  68. {
  69. newTable = LYFZ.BLL.BLL_ErpOrderView.GetData_StatisticsQueryUserInfo(StrWhere, "");
  70. });
  71. #region
  72. this.dgvData.DataColumns("ID,部门,工号,姓名,性别,电话,身份证号,地址,籍贯地址,婚否,在职,生日,备注", strHideField: "ID");
  73. this.dgvData.Columns["身份证号"].Width = 140;
  74. this.dgvData.Columns["生日"].Width = 110;
  75. this.dgvData.Columns["地址"].Width = 250;
  76. this.dgvData.FillLastColumn();
  77. for (int t = 0; t < newTable.Rows.Count; t++)
  78. {
  79. DataGridViewRow dgvr = new DataGridViewRow();
  80. DataGridViewCell cell = null;
  81. cell = new DataGridViewTextBoxCell();
  82. cell.Value = newTable.Rows[t]["ID"].ToString().Trim(); ;
  83. dgvr.Cells.Add(cell);
  84. cell = new DataGridViewTextBoxCell();
  85. cell.Value = newTable.Rows[t]["部门"].ToString().Trim();
  86. dgvr.Cells.Add(cell);
  87. cell = new DataGridViewTextBoxCell();
  88. cell.Value = newTable.Rows[t]["工号"].ToString().Trim();
  89. dgvr.Cells.Add(cell);
  90. cell = new DataGridViewTextBoxCell();
  91. cell.Value = newTable.Rows[t]["姓名"].ToString().Trim();
  92. dgvr.Cells.Add(cell);
  93. cell = new DataGridViewTextBoxCell();
  94. cell.Value = newTable.Rows[t]["性别"].ToString().Trim();
  95. dgvr.Cells.Add(cell);
  96. cell = new DataGridViewTextBoxCell();
  97. cell.Value = newTable.Rows[t]["电话"].ToString().Trim();
  98. dgvr.Cells.Add(cell);
  99. cell = new DataGridViewTextBoxCell();
  100. cell.Value = newTable.Rows[t]["身份证号"].ToString().Trim();
  101. dgvr.Cells.Add(cell);
  102. cell = new DataGridViewTextBoxCell();
  103. cell.Value = newTable.Rows[t]["地址"].ToString().Trim();
  104. dgvr.Cells.Add(cell);
  105. cell = new DataGridViewTextBoxCell();
  106. cell.Value = newTable.Rows[t]["籍贯地址"].ToString().Trim();
  107. dgvr.Cells.Add(cell);
  108. cell = new DataGridViewTextBoxCell();
  109. cell.Value = Convert.ToBoolean(newTable.Rows[t]["婚否"]) ? "已婚" : "未婚";
  110. dgvr.Cells.Add(cell);
  111. cell = new DataGridViewTextBoxCell();
  112. cell.Value = newTable.Rows[t]["在职"].ToString().Trim();
  113. dgvr.Cells.Add(cell);
  114. cell = new DataGridViewTextBoxCell();
  115. string StrValue = LYFZ.BLL.OtherCommonModel.DateTimeToString(newTable.Rows[t]["生日"], LYFZ.DateTimeType.StrMMdd);
  116. if (Convert.ToBoolean(newTable.Rows[t]["User_BirthdayLunar"]))
  117. { StrValue += "_农历"; }
  118. cell.Value = StrValue;
  119. dgvr.Cells.Add(cell);
  120. cell = new DataGridViewTextBoxCell();
  121. cell.Value = newTable.Rows[t]["备注"].ToString().Trim();
  122. dgvr.Cells.Add(cell);
  123. this.dgvData.Rows.Add(dgvr);
  124. }
  125. dgvData.ClearSelection();
  126. #endregion
  127. }
  128. }
  129. }