FrmSatisfactionSeeDetails.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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.SatisfactionReport
  10. {
  11. public partial class FrmSatisfactionSeeDetails : LYFZ.Software.UI.StatisticalInquiry.SatisfactionReport.FrmSatisfactionSeeDetails
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new LYFZ.BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpSatisfactionSurvey Surveybll = new BLL.BLL_ErpSatisfactionSurvey();
  15. LYFZ.BLL.BLL_ErpSatisfactionRatingSet srsbll = new BLL.BLL_ErpSatisfactionRatingSet();
  16. LYFZ.BLL.BLL_ErpSatisfactionSurveySet setbll = new BLL.BLL_ErpSatisfactionSurveySet();
  17. LYFZ.BLL.BLL_ErpSatisfactionReturningMattersSet sfrmbll = new BLL.BLL_ErpSatisfactionReturningMattersSet();
  18. public FrmSatisfactionSeeDetails()
  19. {
  20. this.Load += FrmSatisfactionSeeDetails_Load;
  21. this.Shown += FrmSatisfactionSeeDetails_Shown;
  22. this.btnSelect.Click += btnSelect_Click;
  23. this.btnClose.Click += btnClose_Click;
  24. }
  25. public string TimeStar;
  26. public string TimeEnd;
  27. public string PersonnelNumber;
  28. public string PersonnelName;
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. void FrmSatisfactionSeeDetails_Load(object sender, EventArgs e)
  35. {
  36. this.Location = new Point(LYFZ.EnumPublic.FormLocation_X, LYFZ.EnumPublic.FormLocation_Y);
  37. this.Size = new Size(LYFZ.EnumPublic.FormSize_Width, LYFZ.EnumPublic.FormSize_Height);
  38. }
  39. /// <summary>
  40. /// 窗体加载事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. void FrmSatisfactionSeeDetails_Shown(object sender, EventArgs e)
  45. {
  46. DataTable dt = orbll.GetView_Custom("tb_ErpSatisfactionRatingSet", StrWhere: "", ShowColumnName: "Sfrs_Name", filedOrder: "ID").Tables[0];
  47. string StrColumnName = "人员ID,服务人员";
  48. for (int i = 0; i < dt.Rows.Count; i++)
  49. { StrColumnName += "," + dt.Rows[i]["Sfrs_Name"].ToString().Trim(); }
  50. StrColumnName += ",总满意程度分值,总满意程度";
  51. this.dgvData2.DataColumns(StrColumnName, strHideField: "人员ID");
  52. this.BindReturningItems();
  53. this.BindScores();
  54. this.PublicFunctionRows();
  55. this.PublicFunctionRows2();
  56. }
  57. /// <summary>
  58. /// 查询
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. void btnSelect_Click(object sender, EventArgs e)
  63. {
  64. this.PublicFunctionRows2();
  65. this.PublicFunctionRows();
  66. }
  67. /// <summary>
  68. /// 关闭
  69. /// </summary>
  70. /// <param name="sender"></param>
  71. /// <param name="e"></param>
  72. void btnClose_Click(object sender, EventArgs e)
  73. {
  74. this.Close();
  75. }
  76. /// <summary>
  77. /// 获取回访事项
  78. /// </summary>
  79. void BindReturningItems()
  80. {
  81. DataTable tbl = orbll.GetView_Custom("tb_ErpSatisfactionSurveySet", StrWhere: "", ShowColumnName: "ID,Sfss_Name", filedOrder: "ID").Tables[0];
  82. if (tbl.Rows.Count > 0)
  83. {
  84. TreeNode root = null;
  85. for (int i = 0; i < tbl.Rows.Count; i++)
  86. {
  87. if (i == 0)
  88. {
  89. root = new TreeNode();
  90. root.Text = "全部";
  91. root.Tag = "0";
  92. root.Tag = "All";
  93. this.cmbReturningItems.TreeView.Nodes.Add(root);
  94. }
  95. root = new TreeNode();
  96. root.Text = tbl.Rows[i]["Sfss_Name"].ToString().Trim();
  97. root.Tag = tbl.Rows[i]["ID"].ToString().Trim();
  98. root.Name = "Max";
  99. this.CreateTreeReturningItems(root.Nodes, tbl.Rows[i]["ID"].ToString().Trim());
  100. this.cmbReturningItems.TreeView.Nodes.Add(root);
  101. }
  102. }
  103. }
  104. /// <summary>
  105. /// 绑定第二级人员
  106. /// </summary>
  107. /// <param name="nodes">TreeView的节点集合</param>
  108. /// <param name="dataSource">数据源</param>
  109. /// <param name="parentid"></param>
  110. void CreateTreeReturningItems(TreeNodeCollection nodes, string ClassCode)
  111. {
  112. if (ClassCode != "")
  113. {
  114. DataTable tbl = sfrmbll.GetList("Sfrms_EnableStatus = 0 and Sfrms_SurveySetID = " + ClassCode + "").Tables[0];
  115. if (tbl.Rows.Count > 0)
  116. {
  117. TreeNode node;
  118. for (int i = 0; i < tbl.Rows.Count; i++)
  119. {
  120. node = new TreeNode();
  121. node.Text = tbl.Rows[i]["Sfrms_Contents"].ToString().Trim();
  122. node.Tag = tbl.Rows[i]["ID"].ToString().Trim();
  123. node.Name = "Min";
  124. nodes.Add(node);
  125. }
  126. }
  127. }
  128. }
  129. /// <summary>
  130. /// 获取单项满意度
  131. /// </summary>
  132. void BindScores()
  133. {
  134. DataTable dt = orbll.GetView_Custom("tb_ErpSatisfactionRatingSet", StrWhere: "", ShowColumnName: "ID,Sfrs_Name", filedOrder: "ID").Tables[0];
  135. cmbScores.DataSource = dt;
  136. cmbScores.ValueMember = "ID";
  137. cmbScores.DisplayMember = "Sfrs_Name";
  138. DataRow dr = dt.NewRow();
  139. dr["ID"] = "-1";
  140. dr["Sfrs_Name"] = "";
  141. dt.Rows.InsertAt(dr, 0);
  142. cmbScores.SelectedIndex = -1;
  143. }
  144. /// <summary>
  145. /// 画分页
  146. /// </summary>
  147. /// <param name="e"></param>
  148. /// <returns></returns>
  149. void PublicFunctionRows()
  150. {
  151. this.dgvData.Rows.Clear();
  152. string StrWhere = " Where Sfs_EmployeeID='" + this.PersonnelNumber + "'";
  153. if (!string.IsNullOrEmpty(this.TimeStar) && !string.IsNullOrEmpty(this.TimeEnd))
  154. { StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Sfs_CreateTime", this.TimeStar, this.TimeEnd); }
  155. if (this.cmbReturningItems.Tag != null && this.cmbReturningItems.Text.Trim().Length > 0 && this.cmbReturningItems.Text.Trim() != "全部")
  156. {
  157. switch (this.cmbReturningItems.StrGetName.Trim())
  158. {
  159. case "Max":
  160. StrWhere += " And Sfs_SurveySetID = " + this.cmbReturningItems.Tag.ToString().Trim();
  161. break;
  162. case "Min":
  163. StrWhere += " And Sfs_ReturningMattersSetID = " + this.cmbReturningItems.Tag.ToString().Trim();
  164. break;
  165. }
  166. }
  167. if (this.cmbScores.Text.Trim().Length > 0)
  168. { StrWhere += " And Sfs_RatingSetID = " + this.cmbScores.SelectedValue.ToString(); }
  169. DataTable newTable = new DataTable();
  170. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  171. {
  172. string StrTableName = "SELECT Sfs_OrderNumber AS 订单号," +
  173. "Cus_Name AS 客户姓名," +
  174. "Cus_Telephone AS 客户电话," +
  175. "Ords_PhotographMaxTime as 拍照时间," +
  176. "Sfs_EmployeeID AS 调查对象," +
  177. "Sfss_Name AS 回访对象," +
  178. "Sfrms_Contents AS 回访事项," +
  179. "Sfrs_Name AS 满意度," +
  180. "isnull(Sfrs_Scores, 0) AS 满意分值," +
  181. "Sfs_Remark AS 备注," +
  182. "Sfs_CreateName AS 回访人," +
  183. "Sfs_CreateTime AS 回访时间 " +
  184. "FROM tb_ErpSatisfactionSurvey " +
  185. "left join tb_ErpSatisfactionSurveySet on Sfs_SurveySetID = tb_ErpSatisfactionSurveySet.ID " +
  186. "left join tb_ErpSatisfactionReturningMattersSet on tb_ErpSatisfactionReturningMattersSet.ID = Sfs_ReturningMattersSetID " +
  187. "left join tb_ErpSatisfactionRatingSet on Sfs_RatingSetID = tb_ErpSatisfactionRatingSet.ID " +
  188. "Left Join tempTB_AggregationCustomer on GP_OrderNumber = Sfs_OrderNumber " +
  189. "left join tb_ErpOrderDigitalStatus on tempTB_AggregationCustomer.GP_OrderNumber = tb_ErpOrderDigitalStatus.Ords_OrdNumber and "+
  190. " tb_ErpSatisfactionSurvey.Sfs_OrderNumberDeputy=tb_ErpOrderDigitalStatus.Ords_ViceNumber" +
  191. StrWhere+
  192. " order by Sfs_CreateTime asc ";
  193. newTable = orbll.GetView_Custom(StrTableName).Tables[0];
  194. });
  195. #region
  196. this.dgvData.DataColumns(newTable.Columns, strHideField: "");
  197. this.dgvData.Columns["客户姓名"].Width = 150;
  198. this.dgvData.Columns["客户电话"].Width = 180;
  199. this.dgvData.Columns["回访时间"].Width = 120;
  200. this.dgvData.Columns["回访事项"].Width = 350;
  201. this.dgvData.FillLastColumn();
  202. for (int t = 0; t < newTable.Rows.Count; t++)
  203. {
  204. DataGridViewRow dgvr = new DataGridViewRow();
  205. DataGridViewCell cell = null;
  206. cell = new DataGridViewTextBoxCell();
  207. cell.Value = newTable.Rows[t]["订单号"].ToString().Trim();
  208. dgvr.Cells.Add(cell);
  209. cell = new DataGridViewTextBoxCell();
  210. cell.Value = newTable.Rows[t]["客户姓名"].ToString().Trim();
  211. dgvr.Cells.Add(cell);
  212. cell = new DataGridViewTextBoxCell();
  213. cell.Value = newTable.Rows[t]["客户电话"].ToString().Trim();
  214. dgvr.Cells.Add(cell);
  215. cell = new DataGridViewTextBoxCell();
  216. cell.Value = newTable.Rows[t]["拍照时间"].ToString().Trim();
  217. dgvr.Cells.Add(cell);
  218. cell = new DataGridViewTextBoxCell();
  219. cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["调查对象"]);
  220. dgvr.Cells.Add(cell);
  221. cell = new DataGridViewTextBoxCell();
  222. cell.Value = newTable.Rows[t]["回访对象"].ToString().Trim();
  223. dgvr.Cells.Add(cell);
  224. cell = new DataGridViewTextBoxCell();
  225. cell.Value = newTable.Rows[t]["回访事项"].ToString().Trim();
  226. dgvr.Cells.Add(cell);
  227. cell = new DataGridViewTextBoxCell();
  228. cell.Value = newTable.Rows[t]["满意度"].ToString().Trim();
  229. dgvr.Cells.Add(cell);
  230. cell = new DataGridViewTextBoxCell();
  231. cell.Value = newTable.Rows[t]["满意分值"].ToString();
  232. dgvr.Cells.Add(cell);
  233. cell = new DataGridViewTextBoxCell();
  234. cell.Value = newTable.Rows[t]["备注"].ToString().Trim();
  235. dgvr.Cells.Add(cell);
  236. cell = new DataGridViewTextBoxCell();
  237. cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["回访人"]);
  238. dgvr.Cells.Add(cell);
  239. cell = new DataGridViewTextBoxCell();
  240. cell.Value = LYFZ.BLL.OtherCommonModel.DateTimeToString(newTable.Rows[t]["回访时间"]);
  241. dgvr.Cells.Add(cell);
  242. this.dgvData.Rows.Add(dgvr);
  243. }
  244. this.dgvData.ClearSelection();
  245. #endregion
  246. }
  247. /// <summary>
  248. /// 获取人员查询满意度
  249. /// </summary>
  250. void PublicFunctionRows2()
  251. {
  252. dgvData2.Rows.Clear();
  253. DataTable dt = new DataTable();
  254. string StrWhere = " Sfs_EmployeeID='" + PersonnelNumber + "'" + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Sfs_CreateTime", this.TimeStar, this.TimeEnd);
  255. if (this.cmbReturningItems.Tag != null && this.cmbReturningItems.Text.Trim().Length > 0 && this.cmbReturningItems.Text.Trim() != "全部")
  256. {
  257. switch (this.cmbReturningItems.StrGetName.Trim())
  258. {
  259. case "Max":
  260. StrWhere += " And Sfs_SurveySetID = " + this.cmbReturningItems.Tag.ToString().Trim();
  261. break;
  262. case "Min":
  263. StrWhere += " And Sfs_ReturningMattersSetID = " + this.cmbReturningItems.Tag.ToString().Trim();
  264. break;
  265. }
  266. }
  267. if (this.cmbScores.Text.Trim().Length > 0)
  268. { StrWhere += " And Sfs_RatingSetID = " + this.cmbScores.SelectedValue.ToString(); }
  269. DataTable newTable2 = orbll.GetView_Custom("select Sfs_RatingSetID,Count(Sfs_EmployeeID) AS CountID,Sum(Sfrs_Scores) AS Sfrs_Scores from tb_ErpSatisfactionSurvey Left Join tb_ErpSatisfactionRatingSet on Sfs_RatingSetID=tb_ErpSatisfactionRatingSet.ID Where " + StrWhere + " Group By Sfs_RatingSetID").Tables[0];
  270. newTable2.PrimaryKey = new DataColumn[] { newTable2.Columns["Sfs_RatingSetID"] };
  271. #region
  272. DataGridViewRow dgvr = new DataGridViewRow();
  273. DataGridViewCell cell = null;
  274. cell = new DataGridViewTextBoxCell();
  275. cell.Value = PersonnelNumber;
  276. dgvr.Cells.Add(cell);
  277. cell = new DataGridViewTextBoxCell();
  278. cell.Value = PersonnelName;
  279. dgvr.Cells.Add(cell);
  280. cell = new DataGridViewTextBoxCell();
  281. decimal decScores = 0;
  282. int intScores = 0;
  283. DataRow dtRow1 = newTable2.Rows.Find("1");
  284. if (dtRow1 != null)
  285. {
  286. cell.Value = dtRow1["CountID"].ToString().Trim();
  287. intScores += Convert.ToInt32(dtRow1["CountID"]);
  288. decScores += Convert.ToDecimal(dtRow1["Sfrs_Scores"]);
  289. }
  290. else
  291. { cell.Value = 0; }
  292. dgvr.Cells.Add(cell);
  293. cell = new DataGridViewTextBoxCell();
  294. DataRow dtRow2 = newTable2.Rows.Find("2");
  295. if (dtRow2 != null)
  296. {
  297. cell.Value = dtRow2["CountID"].ToString().Trim();
  298. intScores += Convert.ToInt32(dtRow2["CountID"]);
  299. decScores += Convert.ToDecimal(dtRow2["Sfrs_Scores"]);
  300. }
  301. else
  302. { cell.Value = 0; }
  303. dgvr.Cells.Add(cell);
  304. cell = new DataGridViewTextBoxCell();
  305. DataRow dtRow3 = newTable2.Rows.Find("3");
  306. if (dtRow3 != null)
  307. {
  308. cell.Value = dtRow3["CountID"].ToString().Trim();
  309. intScores += Convert.ToInt32(dtRow3["CountID"]);
  310. decScores += Convert.ToDecimal(dtRow3["Sfrs_Scores"]);
  311. }
  312. else
  313. { cell.Value = 0; }
  314. dgvr.Cells.Add(cell);
  315. cell = new DataGridViewTextBoxCell();
  316. DataRow dtRow4 = newTable2.Rows.Find("4");
  317. if (dtRow4 != null)
  318. {
  319. cell.Value = dtRow4["CountID"].ToString().Trim();
  320. intScores += Convert.ToInt32(dtRow4["CountID"]);
  321. decScores += Convert.ToDecimal(dtRow4["Sfrs_Scores"]);
  322. }
  323. else
  324. { cell.Value = 0; }
  325. dgvr.Cells.Add(cell);
  326. cell = new DataGridViewTextBoxCell();
  327. DataRow dtRow5 = newTable2.Rows.Find("5");
  328. if (dtRow5 != null)
  329. {
  330. cell.Value = dtRow5["CountID"].ToString().Trim();
  331. intScores += Convert.ToInt32(dtRow5["CountID"]);
  332. decScores += Convert.ToDecimal(dtRow5["Sfrs_Scores"]);
  333. }
  334. else
  335. { cell.Value = 0; }
  336. dgvr.Cells.Add(cell);
  337. //总满意程度分值
  338. string Sfrs_Scores = "0";
  339. cell = new DataGridViewTextBoxCell();
  340. if (intScores > 0)
  341. { Sfrs_Scores = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(decScores / intScores); }
  342. cell.Value = Sfrs_Scores;
  343. dgvr.Cells.Add(cell);
  344. //总满意程度
  345. cell = new DataGridViewTextBoxCell();
  346. cell.Value = "";
  347. string[] StrValue = Sfrs_Scores.Split('.');
  348. int intValue = Convert.ToInt32(StrValue[0]);
  349. if (intValue > 0)
  350. {
  351. DataTable dt2 = orbll.GetView_Custom("tb_ErpSatisfactionRatingSet", "Sfrs_Scores <= '" + intValue + "'", ShowColumnName: "Sfrs_Name", filedOrder: "Sfrs_Scores DESC", TopCount: 1).Tables[0];
  352. if (dt2.Rows.Count > 0)
  353. { cell.Value = dt2.Rows[0]["Sfrs_Name"].ToString().Trim(); }
  354. }
  355. dgvr.Cells.Add(cell);
  356. this.dgvData2.Rows.Add(dgvr);
  357. this.dgvData2.ClearSelection();
  358. #endregion
  359. }
  360. }
  361. }