FrmSliceStatistics.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  6. {
  7. public class FrmSliceStatistics : LYFZ.Software.UI.StatisticalInquiry.FrmSliceStatistics
  8. {
  9. LYFZ.BLL.BLL_ErpOrdersPhotography photographBll = new BLL.BLL_ErpOrdersPhotography();
  10. LYFZ.BLL.BLL_ErpUser userBll = new BLL.BLL_ErpUser();
  11. Dictionary<string, Dictionary<string, int>> dicList = new Dictionary<string, Dictionary<string, int>>();
  12. public FrmSliceStatistics()
  13. {
  14. btn_Search.Click += btn_Search_Click;
  15. this.Load += FrmSliceStatistics_Load;
  16. this.dgvData.CellDoubleClick += dgvData_CellContentDoubleClick;
  17. BindErpSystemCategoryData();
  18. }
  19. void BindErpSystemCategoryData()
  20. {
  21. BLL.BLL_ErpSystemCategory bllCategory = new BLL.BLL_ErpSystemCategory();
  22. List<LYFZ.Model.Model_ErpSystemCategory> categoryList = bllCategory.GetSpecifyParentIDToClassList(153);
  23. ItemValue itemValue = new ItemValue("", "全部");
  24. cbx_Level.Items.Add(itemValue);
  25. foreach (var mod in categoryList)
  26. {
  27. cbx_Level.Items.Add(new ItemValue(mod.Sc_ClassCode, mod.Sc_ClassName));
  28. }
  29. cbx_Level.SelectedIndex = 0;
  30. }
  31. void dgvData_CellContentDoubleClick(object sender, System.Windows.Forms.DataGridViewCellEventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. if(e.RowIndex==-1)
  35. {
  36. return;
  37. }
  38. System.Windows.Forms.DataGridViewRow gridViewRow = this.dgvData.Rows[e.RowIndex];
  39. FrmSliceStatisticsDetail detail = new FrmSliceStatisticsDetail();
  40. detail.startTime = dtp_StartTime.Value.ToString("yyyy-MM-dd");
  41. detail.endTime = dtp_EndTime.Value.ToString("yyyy-MM-dd");
  42. detail.employeeId = gridViewRow.Tag.ToString();
  43. detail.tempStrWhere = BindDataGridByWhere();
  44. System.Windows.Forms.DataGridViewColumn cell = this.dgvData.Columns[e.ColumnIndex];
  45. if (cell.HeaderText == "摄影师")
  46. {
  47. detail.employeeKey = "Ordpg_Photographer";
  48. detail.employeeKeyName = cell.HeaderText;
  49. }
  50. else if (cell.HeaderText == "摄影助理")
  51. {
  52. detail.employeeKey = "Ordpg_PhotographyAssistant";
  53. detail.employeeKeyName = cell.HeaderText;
  54. }
  55. else if (cell.HeaderText == "化妆师")
  56. {
  57. detail.employeeKey = "Ordpg_MakeupArtist";
  58. detail.employeeKeyName = cell.HeaderText;
  59. }
  60. else if (cell.HeaderText == "化妆助理")
  61. {
  62. detail.employeeKey = "Ordpg_MakeupAssistant";
  63. detail.employeeKeyName = cell.HeaderText;
  64. }
  65. else if (cell.HeaderText == "引导师")
  66. {
  67. detail.employeeKey = "Ordpg_BootDivision";
  68. detail.employeeKeyName = cell.HeaderText;
  69. }
  70. else if (cell.HeaderText == "引导助理")
  71. {
  72. detail.employeeKey = "Ordpg_BootDivisionAssistant";
  73. detail.employeeKeyName = cell.HeaderText;
  74. }
  75. else if (cell.HeaderText == "初修师")
  76. {
  77. detail.employeeKey = "Ordv_EarlyRepairName";
  78. detail.employeeKeyName = cell.HeaderText;
  79. }
  80. else if (cell.HeaderText == "精修师")
  81. {
  82. detail.employeeKey = "Ordv_RefinementName";
  83. detail.employeeKeyName = cell.HeaderText;
  84. }
  85. else if (cell.HeaderText == "选片师")
  86. {
  87. detail.employeeKey = "Ordv_FilmSelectionName";
  88. detail.employeeKeyName = cell.HeaderText;
  89. }
  90. else if (cell.HeaderText == "设计师")
  91. {
  92. detail.employeeKey = "Ordv_DesignerName";
  93. detail.employeeKeyName = cell.HeaderText;
  94. }
  95. detail.employeeName = gridViewRow.Cells[0].Value.ToString();
  96. detail.ShowDialog();
  97. }
  98. void FrmSliceStatistics_Load(object sender, EventArgs e)
  99. {
  100. btn_Search_Click(null, null);
  101. }
  102. void BindDataGridRowView()
  103. {
  104. dicList.Clear();
  105. this.dgvData.Rows.Clear();
  106. System.Data.DataTable userDt = userBll.GetAllList().Tables[0];
  107. System.Data.DataTable dt = photographBll.GetOrdersPhotographyDataBySelection(dtp_StartTime.Value.ToString("yyyy-MM-dd"), dtp_EndTime.Value.ToString("yyyy-MM-dd"), BindDataGridByWhere(), false);
  108. foreach(System.Data.DataRow dr in userDt.Rows)
  109. {
  110. dicList.Add(dr["User_Name"].ToString() + "|" + dr["User_EmployeeID"], new Dictionary<string, int>());
  111. BindUserActionData(dicList[dr["User_Name"].ToString() + "|" + dr["User_EmployeeID"]], dt, dr["User_EmployeeID"].ToString());
  112. }
  113. foreach(string key in dicList.Keys)
  114. {
  115. int rowIdnex = this.dgvData.Rows.Add();
  116. System.Windows.Forms.DataGridViewRow gridViewRow = this.dgvData.Rows[rowIdnex];
  117. gridViewRow.Tag = key.Split('|')[1];
  118. gridViewRow.Cells[0].Value = key.Split('|')[0];
  119. Dictionary<string, int> valueList = dicList[key];
  120. foreach(string columKey in valueList.Keys)
  121. {
  122. gridViewRow.Cells[columKey].Value = valueList[columKey];
  123. }
  124. }
  125. }
  126. string BindDataGridByWhere()
  127. {
  128. string strWhere = "";
  129. string cbxSceneryText = cbx_Scenery.SelectedItem.ToString();
  130. string cbxSceneryValue = "";
  131. switch (cbxSceneryText)
  132. {
  133. case "全部":
  134. break;
  135. case "外景":
  136. cbxSceneryValue = "1";
  137. break;
  138. case "内景":
  139. cbxSceneryValue = "0";
  140. break;
  141. }
  142. if (!string.IsNullOrEmpty(cbxSceneryValue))
  143. {
  144. if (!string.IsNullOrEmpty(strWhere))
  145. {
  146. strWhere += " and ";
  147. }
  148. strWhere += " Ordpg_SightsType ='" + cbxSceneryValue + "' ";
  149. }
  150. ItemValue cbxLevel = (ItemValue)cbx_Level.SelectedItem;
  151. if (!string.IsNullOrEmpty(cbxLevel.Value.ToString()))
  152. {
  153. if (!string.IsNullOrEmpty(strWhere))
  154. {
  155. strWhere += " and ";
  156. }
  157. strWhere += " Ordpg_SightsLevel ='" + cbxLevel.Value + "' ";
  158. }
  159. return strWhere;
  160. }
  161. void BindUserActionData(Dictionary<string, int> dicList, System.Data.DataTable gridDt,string employeeId)
  162. {
  163. System.Data.DataRow[] photographList = gridDt.Select(" 摄影师 like '%" + employeeId + "%' ");
  164. System.Data.DataRow[] photographAssistantList = gridDt.Select(" 摄影助理 like '%" + employeeId + "%' ");
  165. System.Data.DataRow[] MakeupArtistList = gridDt.Select(" 化妆师 like '%" + employeeId + "%' ");
  166. System.Data.DataRow[] MakeupAssistantList = gridDt.Select(" 化妆助理 like '%" + employeeId + "%' ");
  167. System.Data.DataRow[] BootDivisionList = gridDt.Select(" 引导师 like '%" + employeeId + "%' ");
  168. System.Data.DataRow[] BootDivisionAssistantList = gridDt.Select(" 引导助理 like '%" + employeeId + "%' ");
  169. System.Data.DataRow[] EarlyRepairNameList = gridDt.Select(" 初修师 like '%" + employeeId + "%' ");
  170. System.Data.DataRow[] RefinementNameList = gridDt.Select(" 精修师 like '%" + employeeId + "%' ");
  171. System.Data.DataRow[] FilmSelectionNameList = gridDt.Select(" 选片师 like '%" + employeeId + "%' ");
  172. System.Data.DataRow[] DesignerNameList = gridDt.Select(" 设计师 like '%" + employeeId + "%' ");
  173. dicList.Add("摄影师", photographList.Length);
  174. dicList.Add("摄影助理", photographAssistantList.Length);
  175. dicList.Add("化妆师", MakeupArtistList.Length);
  176. dicList.Add("化妆助理", MakeupAssistantList.Length);
  177. dicList.Add("引导师", BootDivisionList.Length);
  178. dicList.Add("引导助理", BootDivisionAssistantList.Length);
  179. dicList.Add("初修师", EarlyRepairNameList.Length);
  180. dicList.Add("精修师", RefinementNameList.Length);
  181. dicList.Add("选片师", FilmSelectionNameList.Length);
  182. dicList.Add("设计师", DesignerNameList.Length);
  183. }
  184. void btn_Search_Click(object sender, EventArgs e)
  185. {
  186. //throw new NotImplementedException();+
  187. BindDataGridRowView();
  188. }
  189. }
  190. }