FrmSatisfactionReport.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  10. {
  11. public partial class FrmSatisfactionReport : LYFZ.Software.UI.StatisticalInquiry.FrmSatisfactionReport
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. public FrmSatisfactionReport()
  15. {
  16. this.Shown += FrmSatisfactionReport_Shown;
  17. this.btnSelect.Click += btnSelect_Click;
  18. this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick;
  19. this.btnSeeDetails.Click += btnSeeDetails_Click;
  20. this.btnClose.Click += btnClose_Click;
  21. }
  22. /// <summary>
  23. /// 窗体加载事件
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. void FrmSatisfactionReport_Shown(object sender, EventArgs e)
  28. {
  29. this.txtTimeStart.DateValue = SDateTime.Now.ToString("yyyy-MM-01");
  30. this.txtTimeEnd.DateValue = Convert.ToDateTime(this.txtTimeStart.DateValue).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd");
  31. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbServicePersonnel, IsFirstNodeNull: true);
  32. DataTable dt = orbll.GetView_Custom("tb_ErpSatisfactionRatingSet", StrWhere: "", ShowColumnName: "Sfrs_Name", filedOrder: "ID").Tables[0];
  33. string StrColumnName = "人员ID,服务人员";
  34. for (int i = 0; i < dt.Rows.Count; i++)
  35. { StrColumnName += "," + dt.Rows[i]["Sfrs_Name"].ToString().Trim(); }
  36. this.dgvData.DataColumns(StrColumnName, strHideField: "人员ID");
  37. this.PublicFunctionRows();
  38. bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.UIFunctionVersion(VersionControl.VersionFunctionEnum.统计查询满意度报表);
  39. if (!b)
  40. {
  41. btnClose_Click(null, null);
  42. }
  43. }
  44. /// <summary>
  45. /// 查询
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. void btnSelect_Click(object sender, EventArgs e)
  50. {
  51. if (string.IsNullOrEmpty(this.txtTimeStart.DateValue))
  52. { MessageBoxCustom.Show("开始时间不能为空!"); return; }
  53. if (string.IsNullOrEmpty(this.txtTimeEnd.DateValue))
  54. { MessageBoxCustom.Show("结束时间不能为空!"); return; }
  55. if (!string.IsNullOrEmpty(this.txtTimeStart.DateValue) && !string.IsNullOrEmpty(this.txtTimeEnd.Text))
  56. { this.PublicFunctionRows(); }
  57. }
  58. /// <summary>
  59. /// 双击列表
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
  64. {
  65. if (e.Location.Y > this.dgvData.ColumnHeadersHeight)
  66. {
  67. if (string.IsNullOrEmpty(txtTimeStart.DateValue))
  68. { MessageBoxCustom.Show("开始时间不能为空!"); return; }
  69. if (string.IsNullOrEmpty(txtTimeEnd.DateValue))
  70. { MessageBoxCustom.Show("结束时间不能为空!"); return; }
  71. if (dgvData.SelectedRows.Count == 0)
  72. { MessageBoxCustom.Show("请选择你要查看的资料!"); return; }
  73. LYFZ.Software.MainBusiness.StatisticalInquiry.SatisfactionReport.FrmSatisfactionSeeDetails frm = new SatisfactionReport.FrmSatisfactionSeeDetails();
  74. frm.PersonnelNumber = dgvData.CurrentRow.Cells["人员ID"].Value.ToString();
  75. frm.PersonnelName = dgvData.CurrentRow.Cells["服务人员"].Value.ToString();
  76. frm.TimeStar = txtTimeStart.Text.Trim();
  77. frm.TimeEnd = txtTimeEnd.Text.Trim();
  78. frm.ShowDialog();
  79. }
  80. }
  81. /// <summary>
  82. /// 详情
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. void btnSeeDetails_Click(object sender, EventArgs e)
  87. {
  88. if (string.IsNullOrEmpty(txtTimeStart.DateValue))
  89. { MessageBoxCustom.Show("开始时间不能为空!"); return; }
  90. if (string.IsNullOrEmpty(txtTimeEnd.DateValue))
  91. { MessageBoxCustom.Show("结束时间不能为空!"); return; }
  92. if (dgvData.SelectedRows.Count == 0)
  93. { MessageBoxCustom.Show("请选择你要查看的资料!"); return; }
  94. LYFZ.Software.MainBusiness.StatisticalInquiry.SatisfactionReport.FrmSatisfactionSeeDetails frm = new SatisfactionReport.FrmSatisfactionSeeDetails();
  95. frm.PersonnelNumber = dgvData.CurrentRow.Cells["人员ID"].Value.ToString();
  96. frm.PersonnelName = dgvData.CurrentRow.Cells["服务人员"].Value.ToString();
  97. frm.TimeStar = txtTimeStart.Text.Trim();
  98. frm.TimeEnd = txtTimeEnd.Text.Trim();
  99. frm.ShowDialog();
  100. }
  101. /// <summary>
  102. /// 关闭
  103. /// </summary>
  104. /// <param name="sender"></param>
  105. /// <param name="e"></param>
  106. void btnClose_Click(object sender, EventArgs e)
  107. { this.Close(); }
  108. /// <summary>
  109. /// 获取人员满意度列表
  110. /// </summary>
  111. void PublicFunctionRows()
  112. {
  113. this.dgvData.Rows.Clear();
  114. string StrWhere = " Where User_Name is not null";
  115. string StrWhere2 = "";
  116. if (!string.IsNullOrEmpty(txtTimeStart.DateValue) && !string.IsNullOrEmpty(txtTimeEnd.Text))
  117. {
  118. StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Sfs_CreateTime", this.txtTimeStart.DateValue, this.txtTimeEnd.DateValue);
  119. StrWhere2 += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Sfs_CreateTime", this.txtTimeStart.DateValue, this.txtTimeEnd.DateValue);
  120. }
  121. if (!string.IsNullOrEmpty(cmbServicePersonnel.Text.Trim()))
  122. {
  123. StrWhere += " And Sfs_EmployeeID='" + cmbServicePersonnel.Tag.ToString() + "'";
  124. StrWhere2 += " And Sfs_EmployeeID='" + cmbServicePersonnel.Tag.ToString() + "'";
  125. }
  126. DataTable newTable = new DataTable();
  127. DataTable newTable2 = new DataTable();
  128. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  129. {
  130. newTable = orbll.GetView_Custom("select distinct Sfs_EmployeeID,User_Name from tb_ErpSatisfactionSurvey Left Join tb_ErpUser on User_EmployeeID = Sfs_EmployeeID " + StrWhere).Tables[0];
  131. newTable2 = orbll.GetView_Custom("select Sfs_RatingSetID,Sfs_EmployeeID,Count(Sfs_EmployeeID) AS CountID from tb_ErpSatisfactionSurvey Where Sfs_EmployeeID != '' " + StrWhere2 + " Group By Sfs_RatingSetID,Sfs_EmployeeID").Tables[0];
  132. });
  133. #region
  134. for (int t = 0; t < newTable.Rows.Count; t++)
  135. {
  136. DataGridViewRow dgvr = new DataGridViewRow();
  137. DataGridViewCell cell = null;
  138. cell = new DataGridViewTextBoxCell();
  139. cell.Value = newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim();
  140. dgvr.Cells.Add(cell);
  141. cell = new DataGridViewTextBoxCell();
  142. cell.Value = newTable.Rows[t]["User_Name"].ToString().Trim();
  143. dgvr.Cells.Add(cell);
  144. cell = new DataGridViewTextBoxCell();
  145. DataRow[] dtRows1 = newTable2.Select("Sfs_RatingSetID = 1 and Sfs_EmployeeID = '" + newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim() + "'");
  146. if (dtRows1.Length > 0)
  147. { cell.Value = dtRows1[0]["CountID"].ToString().Trim(); }
  148. else
  149. { cell.Value = 0; }
  150. dgvr.Cells.Add(cell);
  151. cell = new DataGridViewTextBoxCell();
  152. DataRow[] dtRows2 = newTable2.Select("Sfs_RatingSetID = 2 and Sfs_EmployeeID = '" + newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim() + "'");
  153. if (dtRows2.Length > 0)
  154. { cell.Value = dtRows2[0]["CountID"].ToString().Trim(); }
  155. else
  156. { cell.Value = 0; }
  157. dgvr.Cells.Add(cell);
  158. cell = new DataGridViewTextBoxCell();
  159. DataRow[] dtRows3 = newTable2.Select("Sfs_RatingSetID = 3 and Sfs_EmployeeID = '" + newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim() + "'");
  160. if (dtRows3.Length > 0)
  161. { cell.Value = dtRows3[0]["CountID"].ToString().Trim(); }
  162. else
  163. { cell.Value = 0; }
  164. dgvr.Cells.Add(cell);
  165. cell = new DataGridViewTextBoxCell();
  166. DataRow[] dtRows4 = newTable2.Select("Sfs_RatingSetID = 4 and Sfs_EmployeeID = '" + newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim() + "'");
  167. if (dtRows4.Length > 0)
  168. { cell.Value = dtRows4[0]["CountID"].ToString().Trim(); }
  169. else
  170. { cell.Value = 0; }
  171. dgvr.Cells.Add(cell);
  172. cell = new DataGridViewTextBoxCell();
  173. DataRow[] dtRows5 = newTable2.Select("Sfs_RatingSetID = 5 and Sfs_EmployeeID = '" + newTable.Rows[t]["Sfs_EmployeeID"].ToString().Trim() + "'");
  174. if (dtRows5.Length > 0)
  175. { cell.Value = dtRows5[0]["CountID"].ToString().Trim(); }
  176. else
  177. { cell.Value = 0; }
  178. dgvr.Cells.Add(cell);
  179. this.dgvData.Rows.Add(dgvr);
  180. }
  181. this.dgvData.ClearSelection();
  182. #endregion
  183. }
  184. }
  185. }