FrmFinancialChart.cs 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804
  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. using System.Security.Permissions;
  10. using System.IO;
  11. using System.Threading;
  12. using System.Windows.Forms.DataVisualization.Charting;
  13. using System.Data.OleDb;
  14. using System.Data.SqlClient;
  15. using LYFZ.Helper;
  16. using System.Text.RegularExpressions;
  17. using System.Collections;
  18. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  19. {
  20. public partial class FrmFinancialChart : LYFZ.Software.UI.StatisticalInquiry.FrmFinancialChart
  21. {
  22. LYFZ.BLL.BLL_ErpUser userbll = new BLL.BLL_ErpUser();
  23. LYFZ.BLL.BLL_ErpOrder orbll = new LYFZ.BLL.BLL_ErpOrder();
  24. LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
  25. public FrmFinancialChart()
  26. {
  27. this.Shown += FrmFinancialChart_Shown;
  28. this.dgv.Click += dgv_Click;
  29. this.numYear.ValueChanged += numYear_ValueChanged;
  30. this.Resize += FrmFinancialChart_Resize;
  31. this.cmbtreevProjectSearch.ComboBoxTree_NodeMouseClick += cmbtreevProjectSearch_ComboBoxTree_NodeMouseClick;
  32. this.cmbtreevSeriesChartType.ComboBoxTree_NodeMouseClick += cmbtreevSeriesChartType_ComboBoxTree_NodeMouseClick;
  33. this.cmbtreevPakName.ComboBoxTree_NodeMouseClick += cmbtreevPakName_ComboBoxTree_NodeMouseClick;
  34. this.cmbtreevTaoXiName.ComboBoxTree_NodeMouseClick += cmbtreevTaoXiName_ComboBoxTree_NodeMouseClick;
  35. this.btnQuery.Click += btnQuery_Click;
  36. this.btnClose.Click += btnColse_Click;
  37. this.panelEx4.Click += panelEx4_Click;
  38. this.labelEx3.Click += labelEx3_Click;
  39. }
  40. DataTable tblUser = new DataTable();
  41. DataTable tblsc = new DataTable();
  42. /// <summary>
  43. /// 窗体加载事件
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. void FrmFinancialChart_Shown(object sender, EventArgs e)
  48. {
  49. TreeNode root = null;
  50. string[] StrValues = "Point|点,FastPoint|快速点,Bubble|泡沫,Line|线,Spline|仿样,StepLine|步线,FastLine|快绳,Bar|酒吧,StackedBar|堆叠酒吧,StackedBar100|堆叠酒吧100,Column|柱,StackedColumn|堆积柱形图,StackedColumn100|堆积柱形图100,Area|区,SplineArea|花键区,StackedArea|堆积区,StackedArea100|堆积区100,Pie|馅饼,Doughnut|甜甜圈,Stock|股票,Candlestick|檠,Range|范围,SplineRange|样条范围,RangeBar|范围吧,RangeColumn|范围列,Radar|雷达,Polar|极性,ErrorBar|错误吧,BoxPlot|箱线图,Funnel|漏斗,Pyramid|金字塔".Split(',');
  51. for (int i = 0; i < StrValues.Length; i++)
  52. {
  53. string[] StrArray = StrValues[i].Trim().Split('|');
  54. root = new TreeNode();
  55. root.Text = StrArray[1].Trim();
  56. root.Tag = StrArray[0].Trim();
  57. this.cmbtreevSeriesChartType.Nodes.Add(root);
  58. }
  59. this.cmbtreevSeriesChartType.TagFindText(SeriesChartType.Column.ToString());
  60. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevProjectSearch, StrBindData: "定单,订单收款,业绩,客户来源,平均选片率");
  61. this.cmbtreevProjectSearch.TextFindTag("定单");
  62. this.cmbtreevProjectSearch.SelectedNode = this.cmbtreevProjectSearch.GetNodeItem_TextToTag("定单");
  63. this.numYear.Value = SDateTime.Now.Year;
  64. this.chart1.Focus();
  65. this.chart1.ChartAreas[0].CursorX.IsUserEnabled = true;
  66. this.chart1.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
  67. this.chart1.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
  68. this.chart1.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = false;//将滚动内嵌到坐标轴中
  69. this.chart1.ChartAreas["ChartArea1"].AxisX.ScrollBar.Size = 20;// 设置滚动条的大小
  70. this.chart1.ChartAreas["ChartArea1"].AxisX.ScrollBar.ButtonStyle = ScrollBarButtonStyles.All;// 设置滚动条的按钮的风格,下面代码是将所有滚动条上的按钮都显示出来
  71. this.chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.SmallScrollSize = double.NaN;// 设置自动放大与缩小的最小量
  72. this.chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.SmallScrollMinSize = 2;
  73. bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.UIFunctionVersion(VersionControl.VersionFunctionEnum.统计查询订单图表);
  74. if (!b)
  75. {
  76. this.Close();
  77. }
  78. }
  79. /// <summary>
  80. /// 年变更事件
  81. /// </summary>
  82. /// <param name="sender"></param>
  83. /// <param name="e"></param>
  84. void numYear_ValueChanged(object sender, EventArgs e)
  85. {
  86. if (!string.IsNullOrEmpty(this.numYear.Value.ToString().Trim()))
  87. {
  88. string StrStartTime = this.numYear.Value.ToString().Trim() + "-01-01";
  89. string StrEndTime = Convert.ToDateTime(StrStartTime).AddYears(1).AddSeconds(-1).ToString("yyyy-MM-dd");
  90. string ExecuteSql = "select Ord_PhotographyCategory,Ord_SeriesName from tb_ErpOrder Where " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_SaveOrderDateTime", StrStartTime, StrEndTime, ConnectWord: "") + " Group By Ord_PhotographyCategory,Ord_SeriesName";
  91. DataTable dt = orbll.GetView_Custom(ExecuteSql).Tables[0];
  92. Hashtable htData1 = new Hashtable();
  93. Hashtable htData2 = new Hashtable();
  94. for (int i = 0; i < dt.Rows.Count; i++)
  95. {
  96. htData1[dt.Rows[i]["Ord_PhotographyCategory"].ToString().Trim()] = dt.Rows[i]["Ord_PhotographyCategory"].ToString().Trim();
  97. htData2[dt.Rows[i]["Ord_SeriesName"].ToString().Trim()] = dt.Rows[i]["Ord_SeriesName"].ToString().Trim();
  98. }
  99. this.cmbtreevTaoXiName.SetTextAndTag_ValueNull();
  100. this.cmbtreevTaoXiName.Nodes.Clear();
  101. TreeNode root = null;
  102. root = new TreeNode();
  103. root.Text = "全部";
  104. root.Tag = "";
  105. root.Name = "All";
  106. this.cmbtreevTaoXiName.Nodes.Add(root);
  107. if (htData1.Count > 0)
  108. {
  109. root = new TreeNode();
  110. root.Text = "按套系类别";
  111. root.Tag = "";
  112. root.Name = "CategoryAll";
  113. TreeNode nodes = null;
  114. foreach (DictionaryEntry item in htData1)
  115. {
  116. nodes = new TreeNode();
  117. nodes.Text = item.Key.ToString().Trim();
  118. nodes.Tag = item.Key.ToString().Trim();
  119. nodes.Name = "Category";
  120. root.Nodes.Add(nodes);
  121. }
  122. this.cmbtreevTaoXiName.Nodes.Add(root);
  123. }
  124. if (htData2.Count > 0)
  125. {
  126. root = new TreeNode();
  127. root.Text = "按套系名称";
  128. root.Tag = "";
  129. root.Name = "SeriesNameAll";
  130. TreeNode nodes = null;
  131. foreach (DictionaryEntry item in htData2)
  132. {
  133. nodes = new TreeNode();
  134. nodes.Text = item.Key.ToString().Trim();
  135. nodes.Tag = item.Key.ToString().Trim();
  136. nodes.Name = "SeriesName";
  137. root.Nodes.Add(nodes);
  138. }
  139. this.cmbtreevTaoXiName.Nodes.Add(root);
  140. }
  141. this.cmbtreevTaoXiName.TextFindTag("全部");
  142. this.cmbtreevTaoXiName.SelectedNode = this.cmbtreevTaoXiName.GetNodeItem_TextToTag("全部");
  143. this.cmbtreevProjectSearch_ComboBoxTree_NodeMouseClick(this, null);
  144. }
  145. }
  146. /// <summary>
  147. /// 项目选择
  148. /// </summary>
  149. /// <param name="sender"></param>
  150. /// <param name="e"></param>
  151. void cmbtreevProjectSearch_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  152. {
  153. this.dgv.Visible = true;
  154. this.cmbtreevPakName.Nodes.Clear();
  155. this.cmbtreevPakName.Text = "";
  156. this.panelPakName.Visible = false;
  157. this.dgv.Rows.Clear();
  158. this.dgv.Columns.Clear();
  159. this.panelEx1.Visible = true;
  160. if (this.cmbtreevProjectSearch.Text.Trim() == "定单")
  161. {
  162. #region
  163. string[] strcolumns = "项目名称".Split(',');
  164. for (int i = 0; i < strcolumns.Length; i++)
  165. {
  166. if (!string.IsNullOrEmpty(strcolumns[i].Trim()))
  167. {
  168. DataGridViewColumn column = new DataGridViewColumn();
  169. column.ReadOnly = true;
  170. column.Name = strcolumns[i].Trim();
  171. column.HeaderText = strcolumns[i].Trim();
  172. this.dgv.Columns.Add(column);
  173. }
  174. }
  175. Type type = typeof(LYFZ.EnumPublic.OrderType);
  176. Array Arrays = Enum.GetValues(type);
  177. DataGridViewCell cell = null;
  178. for (int i = 0; i < Arrays.LongLength; i++)
  179. {
  180. DataGridViewRow dgvr = new DataGridViewRow();
  181. cell = new DataGridViewTextBoxCell();
  182. cell.Value = Arrays.GetValue(i);
  183. dgvr.Cells.Add(cell);
  184. this.dgv.Rows.Add(dgvr);
  185. }
  186. #endregion
  187. }
  188. else if (cmbtreevProjectSearch.Text.Trim() == "订单收款")
  189. {
  190. #region
  191. string[] strcolumns = "项目名称".Split(',');
  192. for (int i = 0; i < strcolumns.Length; i++)
  193. {
  194. if (!string.IsNullOrEmpty(strcolumns[i].Trim()))
  195. {
  196. DataGridViewColumn column = new DataGridViewColumn();
  197. column.ReadOnly = true;
  198. column.Name = strcolumns[i].Trim();
  199. column.HeaderText = strcolumns[i].Trim();
  200. this.dgv.Columns.Add(column);
  201. }
  202. }
  203. string[] Arrays = "应付,前期,后期,已付,欠款".Split(',');
  204. DataGridViewCell cell = null;
  205. for (int i = 0; i < Arrays.LongLength; i++)
  206. {
  207. DataGridViewRow dgvr = new DataGridViewRow();
  208. cell = new DataGridViewTextBoxCell();
  209. cell.Value = Arrays.GetValue(i);
  210. dgvr.Cells.Add(cell);
  211. this.dgv.Rows.Add(dgvr);
  212. }
  213. #endregion
  214. }
  215. else if (cmbtreevProjectSearch.Text.Trim() == "客户来源")
  216. {
  217. #region
  218. string[] strcolumns = "项目编号,项目名称".Split(',');
  219. for (int i = 0; i < strcolumns.Length; i++)
  220. {
  221. if (!string.IsNullOrEmpty(strcolumns[i].Trim()))
  222. {
  223. DataGridViewColumn column = new DataGridViewColumn();
  224. column.ReadOnly = true;
  225. column.Name = strcolumns[i].Trim();
  226. column.HeaderText = strcolumns[i].Trim();
  227. this.dgv.Columns.Add(column);
  228. }
  229. }
  230. this.dgv.Columns["项目编号"].Visible = false;
  231. if (tblsc.Rows.Count <= 0)
  232. {
  233. tblsc = orbll.GetView_Custom("tb_ErpSystemCategory", StrWhere: "", ShowColumnName: "ID,Sc_ClassCode,Sc_ClassName,Sc_ClassParentID").Tables[0];
  234. tblsc.PrimaryKey = new DataColumn[] { tblsc.Columns["Sc_ClassCode"] };
  235. }
  236. DataRow dtRow = tblsc.Rows.Find("AAAAAAF");
  237. if (dtRow != null)
  238. {
  239. DataRow[] dtRows = tblsc.Select("Sc_ClassParentID = '" + dtRow["ID"] + "'");
  240. DataGridViewCell cell = null;
  241. for (int i = 0; i < dtRows.Length; i++)
  242. {
  243. DataRow[] dtRows2 = tblsc.Select("Sc_ClassParentID = '" + dtRows[i]["ID"] + "'");
  244. if (dtRows2.Length > 0)
  245. {
  246. for (int j = 0; j < dtRows2.Length; j++)
  247. {
  248. DataGridViewRow dgvr = new DataGridViewRow();
  249. cell = new DataGridViewTextBoxCell();
  250. cell.Value = dtRows2[j]["Sc_ClassCode"];
  251. dgvr.Cells.Add(cell);
  252. cell = new DataGridViewTextBoxCell();
  253. cell.Value = dtRows2[j]["Sc_ClassName"];
  254. dgvr.Cells.Add(cell);
  255. this.dgv.Rows.Add(dgvr);
  256. }
  257. }
  258. else
  259. {
  260. DataGridViewRow dgvr = new DataGridViewRow();
  261. cell = new DataGridViewTextBoxCell();
  262. cell.Value = dtRows[i]["Sc_ClassCode"];
  263. dgvr.Cells.Add(cell);
  264. cell = new DataGridViewTextBoxCell();
  265. cell.Value = dtRows[i]["Sc_ClassName"];
  266. dgvr.Cells.Add(cell);
  267. this.dgv.Rows.Add(dgvr);
  268. }
  269. }
  270. }
  271. #endregion
  272. }
  273. else if (cmbtreevProjectSearch.Text.Trim() == "平均选片率")
  274. {
  275. this.panelEx1.Visible = false;
  276. #region
  277. // DataGridViewRow dgvr = new DataGridViewRow();
  278. // DataGridViewCell cell = null;
  279. // dgvr = new DataGridViewRow();
  280. // cell = new DataGridViewTextBoxCell();
  281. // cell.Value = "";
  282. // dgvr.Cells.Add(cell);
  283. // cell = new DataGridViewTextBoxCell();
  284. // cell.Value = "选片率=选片/拍照";
  285. // dgvr.Cells.Add(cell);
  286. // this.dgv.Rows.Add(dgvr);
  287. // dgvr = new DataGridViewRow();
  288. // cell = new DataGridViewTextBoxCell();
  289. // cell.Value = "";
  290. // dgvr.Cells.Add(cell);
  291. // cell = new DataGridViewTextBoxCell();
  292. // cell.Value = "平均加选(张)";
  293. // dgvr.Cells.Add(cell);
  294. // this.dgv.Rows.Add(dgvr);
  295. // #endregion
  296. // dgv.SelectAll();
  297. #endregion
  298. }
  299. else if (cmbtreevProjectSearch.Text.Trim() == "业绩")
  300. {
  301. #region
  302. panelPakName.Visible = true;
  303. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevPakName, "全部,订单前期,订单后期");
  304. this.cmbtreevPakName.TextFindTag("全部");
  305. string[] strcolumns = "员工编号,项目名称".Split(',');
  306. for (int i = 0; i < strcolumns.Length; i++)
  307. {
  308. if (!string.IsNullOrEmpty(strcolumns[i].Trim()))
  309. {
  310. DataGridViewColumn column = new DataGridViewColumn();
  311. column.ReadOnly = true;
  312. column.Name = strcolumns[i].Trim();
  313. column.HeaderText = strcolumns[i].Trim();
  314. this.dgv.Columns.Add(column);
  315. }
  316. }
  317. this.dgv.Columns["员工编号"].Visible = false;
  318. if (tblUser.Rows.Count <= 0)
  319. { tblUser = userbll.GetList("User_Status!='离职'").Tables[0]; }
  320. DataGridViewCell cell = null;
  321. for (int i = 0; i < tblUser.Rows.Count; i++)
  322. {
  323. DataGridViewRow dgvr = new DataGridViewRow();
  324. cell = new DataGridViewTextBoxCell();
  325. cell.Value = tblUser.Rows[i]["User_EmployeeID"].ToString();
  326. dgvr.Cells.Add(cell);
  327. cell = new DataGridViewTextBoxCell();
  328. cell.Value = tblUser.Rows[i]["User_Name"].ToString();
  329. dgvr.Cells.Add(cell);
  330. this.dgv.Rows.Add(dgvr);
  331. }
  332. #endregion
  333. }
  334. for (int i = 0; i < this.dgv.Rows.Count; i++)
  335. {
  336. if (i <= 9)
  337. { this.dgv.Rows[i].Selected = true; }
  338. else
  339. { break; }
  340. }
  341. this.cmbtreevPakName_ComboBoxTree_NodeMouseClick(this, null);
  342. }
  343. /// <summary>
  344. /// 列表点击事件
  345. /// </summary>
  346. /// <param name="sender"></param>
  347. /// <param name="e"></param>
  348. void dgv_Click(object sender, EventArgs e)
  349. {
  350. bool IsTrue = true;
  351. while (IsTrue)
  352. {
  353. if (this.dgv.SelectedRows.Count > 10)
  354. {
  355. this.dgv.Rows[this.dgv.SelectedRows.Count - 1].Selected = false;
  356. }
  357. else
  358. { IsTrue = false; }
  359. }
  360. this.cmbtreevPakName_ComboBoxTree_NodeMouseClick(this, null);
  361. }
  362. /// <summary>
  363. /// 选择订单类别
  364. /// </summary>
  365. /// <param name="sender"></param>
  366. /// <param name="e"></param>
  367. void cmbtreevPakName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  368. {
  369. try
  370. {
  371. #region
  372. string StrStartTime = this.numYear.Value.ToString().Trim() + "-01-01";
  373. string StrEndTime = Convert.ToDateTime(StrStartTime).AddYears(1).ToString("yyyy-MM-dd");
  374. string StrWhere = "";
  375. if (this.cmbtreevTaoXiName.Tag != null)
  376. {
  377. this.cmbtreevTaoXiName.SelectedNode = this.cmbtreevTaoXiName.GetNodeItem_TextToTag(this.cmbtreevTaoXiName.Text.Trim());
  378. if (!string.IsNullOrEmpty(this.cmbtreevTaoXiName.Tag.ToString().Trim()))
  379. {
  380. switch (this.cmbtreevTaoXiName.StrGetName.Trim())
  381. {
  382. case "Category":
  383. StrWhere = " And Ord_PhotographyCategory = '" + this.cmbtreevTaoXiName.Tag.ToString().Trim() + "'";
  384. break;
  385. case "SeriesName":
  386. StrWhere = " And Ord_SeriesName = '" + this.cmbtreevTaoXiName.Tag.ToString().Trim() + "'";
  387. break;
  388. }
  389. }
  390. else
  391. {
  392. string StrWh = "";
  393. if (this.cmbtreevTaoXiName.SelectedNode != null)
  394. {
  395. for (int i = 0; i < this.cmbtreevTaoXiName.SelectedNode.Nodes.Count; i++)
  396. { StrWh += "'" + this.cmbtreevTaoXiName.SelectedNode.Nodes[i].Tag.ToString().Trim() + "',"; }
  397. if (!string.IsNullOrEmpty(StrWh))
  398. {
  399. switch (this.cmbtreevTaoXiName.StrGetName.Trim())
  400. {
  401. case "CategoryAll":
  402. StrWhere = " And Ord_PhotographyCategory in (" + StrWh.TrimEnd(',') + ")";
  403. break;
  404. case "SeriesNameAll":
  405. StrWhere = " And Ord_SeriesName in (" + StrWh.TrimEnd(',') + ")";
  406. break;
  407. }
  408. }
  409. }
  410. }
  411. }
  412. #endregion
  413. Series tempseries = null;
  414. //获取月份
  415. string[] arrayMonths = new string[] { "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" };
  416. string[] Months = new string[] { "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12" };
  417. //设置颜色
  418. Color[] mycolor = new Color[10] { Color.Red, Color.Blue, Color.Yellow, Color.Green, Color.BlueViolet, Color.Crimson, Color.Fuchsia, Color.DeepPink, Color.LawnGreen, Color.Maroon };
  419. this.chart1.Series.Clear();
  420. this.chart1.ChartAreas["ChartArea1"].AxisX.Interval = 1;//x轴数据显示间隔
  421. if (this.cmbtreevProjectSearch.Text.Trim() == "定单")
  422. {
  423. #region
  424. DataTable tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_SaveOrderDateTime", StrStartTime, StrEndTime, DateAddDays: 0, ConnectWord: "") + StrWhere, ShowColumnName: "count(id) as 数量,Ord_Type As 项目,convert(varchar(7),Ord_SaveOrderDateTime,120) as 日期", GroupBy: "Ord_Type,convert(varchar(7),Ord_SaveOrderDateTime,120)").Tables[0];
  425. for (int i = 0; i < this.dgv.SelectedRows.Count; i++)
  426. {
  427. int TypeCount = Convert.ToInt32(Enum.Parse(typeof(LYFZ.EnumPublic.OrderType), this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim()));
  428. //获取Series名称
  429. tempseries = new Series(this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim());
  430. tempseries.ChartType = (SeriesChartType)Enum.Parse(typeof(SeriesChartType), this.cmbtreevSeriesChartType.Tag.ToString());
  431. this.chart1.Series.Add(tempseries);
  432. this.chart1.Series[i].Color = mycolor[i];
  433. this.chart1.Series[i].Points.Clear();
  434. this.chart1.Series[i].ToolTip = this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim();
  435. //获取月份与月份订单数
  436. for (int y = 0; y < Months.Length; y++)
  437. {
  438. string time = Convert.ToDateTime(this.numYear.Value + "-" + Months[y]).ToString("yyyy-MM");
  439. DataRow[] row = tbl.Select(" 项目 = '" + TypeCount + "' and 日期 = '" + time + "'");
  440. int decCount = 0;
  441. if (row.Length > 0)
  442. { decCount = Convert.ToInt32(row[0]["数量"]); }
  443. tempseries.Points.AddXY(Months[y], decCount.ToString());
  444. if (decCount > 0)
  445. { tempseries.Points[y].IsValueShownAsLabel = true; }
  446. }
  447. }
  448. #endregion
  449. }
  450. else if (this.cmbtreevProjectSearch.Text.Trim() == "订单收款")
  451. {
  452. #region
  453. string ExecuteSql = "with t AS " +
  454. "(" +
  455. "select SUM(Ord_SeriesPrice) as 金额, convert(varchar(7),Ord_SaveOrderDateTime,120) as 日期, '订单' AS 模板 " +
  456. "from dbo.tb_ErpOrder " +
  457. "where Ord_Class = 1 " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_SaveOrderDateTime", StrStartTime, StrEndTime, DateAddDays: 0) + StrWhere + " " +
  458. "group by convert(varchar(7),Ord_SaveOrderDateTime,120) " +
  459. "UNION ALL " +
  460. "select " +
  461. "SUM(Plu_Amount) as 金额, convert(varchar(7),Plu_CreateTime,120) as 日期, '二销加挑' AS 模板 " +
  462. "from [dbo].tb_ErpPlusPickItems Left Join tb_ErpOrder on Ord_Number = Plu_OrdNumber " +
  463. "where " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Plu_CreateTime", StrStartTime, StrEndTime, DateAddDays: 0, ConnectWord: "") + StrWhere + " " +
  464. "group by convert(varchar(7),Plu_CreateTime,120) " +
  465. "UNION ALL " +
  466. "select SUM(Pay_AmountOf) as 金额, convert(varchar(7),Pay_CreateDatetime,120) as 日期, '订单收款' AS 模板 " +
  467. "from [dbo].tb_ErpPayment Left Join tb_ErpOrder on Ord_Number = Pay_OrdNumber " +
  468. "where Pay_Type=0 and Pay_PaymentMethod not in ('BEBACCAFEGECFBJFD','BEBCABAJBDFBBJGID') " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Pay_CreateDatetime", StrStartTime, StrEndTime, DateAddDays: 0) + StrWhere + " " +
  469. "group by convert(varchar(7),Pay_CreateDatetime,120) " +
  470. ")" +
  471. "select 金额,日期,模板 from t";
  472. DataSet dtSet = orbll.GetView_Custom(ExecuteSql);
  473. DataTable tbl = dtSet.Tables["ds"];
  474. for (int i = 0; i < this.dgv.SelectedRows.Count; i++)
  475. {
  476. //获取Series名称
  477. tempseries = new Series(this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim());
  478. tempseries.ChartType = (SeriesChartType)Enum.Parse(typeof(SeriesChartType), this.cmbtreevSeriesChartType.Tag.ToString());
  479. this.chart1.Series.Add(tempseries);
  480. this.chart1.Series[i].Color = mycolor[i];
  481. this.chart1.Series[i].Points.Clear();
  482. this.chart1.Series[i].ToolTip = this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim();
  483. for (int y = 0; y < Months.Length; y++)
  484. {
  485. decimal decAoumnt = 0;
  486. string StrTime = Convert.ToDateTime(this.numYear.Value + "-" + Months[y]).ToString("yyyy-MM");
  487. switch (this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim())
  488. {
  489. case "应付":
  490. DataRow[] dtRow1 = tbl.Select("模板 = '订单' And 日期 = '" + StrTime + "'");
  491. for (int j = 0; j < dtRow1.Length; j++)
  492. { decAoumnt += Convert.ToDecimal(dtRow1[j]["金额"]); }
  493. DataRow[] dtRow2 = tbl.Select("模板 = '二销加挑' And 日期 = '" + StrTime + "'");
  494. for (int j = 0; j < dtRow2.Length; j++)
  495. { decAoumnt += Convert.ToDecimal(dtRow2[j]["金额"]); }
  496. break;
  497. case "前期":
  498. DataRow[] dtRow3 = tbl.Select("模板 = '订单' And 日期 = '" + StrTime + "'");
  499. for (int j = 0; j < dtRow3.Length; j++)
  500. { decAoumnt += Convert.ToDecimal(dtRow3[j]["金额"]); }
  501. break;
  502. case "后期":
  503. DataRow[] dtRow4 = tbl.Select("模板 = '二销加挑' And 日期='" + StrTime + "'");
  504. for (int j = 0; j < dtRow4.Length; j++)
  505. { decAoumnt += Convert.ToDecimal(dtRow4[j]["金额"]); }
  506. break;
  507. case "已付":
  508. DataRow[] dtRow5 = tbl.Select("模板 = '订单收款' And 日期='" + StrTime + "'");
  509. for (int j = 0; j < dtRow5.Length; j++)
  510. { decAoumnt += Convert.ToDecimal(dtRow5[j]["金额"]); }
  511. break;
  512. case "欠款":
  513. DataRow[] dtRow6 = tbl.Select("模板 = '订单' And 日期 = '" + StrTime + "'");
  514. for (int j = 0; j < dtRow6.Length; j++)
  515. { decAoumnt += Convert.ToDecimal(dtRow6[j]["金额"]); }
  516. DataRow[] dtRow7 = tbl.Select("模板 = '二销加挑' And 日期 = '" + StrTime + "'");
  517. for (int j = 0; j < dtRow7.Length; j++)
  518. { decAoumnt += Convert.ToDecimal(dtRow7[j]["金额"]); }
  519. DataRow[] dtRow8 = tbl.Select("模板 = '订单收款' And 日期='" + StrTime + "'");
  520. for (int j = 0; j < dtRow8.Length; j++)
  521. { decAoumnt -= Convert.ToDecimal(dtRow8[j]["金额"]); }
  522. break;
  523. }
  524. tempseries.Points.AddXY(Months[y], decAoumnt.ToString());
  525. if (decAoumnt > 0)
  526. { tempseries.Points[y].IsValueShownAsLabel = true; }
  527. }
  528. }
  529. #endregion
  530. }
  531. else if (this.cmbtreevProjectSearch.Text.Trim() == "客户来源")
  532. {
  533. #region
  534. DataTable tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_SaveOrderDateTime", StrStartTime, StrEndTime, DateAddDays: 0, ConnectWord: "") + StrWhere, ShowColumnName: "count(id) as 数量,Ord_CustomerSource AS 项目,convert(varchar(7),Ord_SaveOrderDateTime,120) as 日期", GroupBy: " Ord_CustomerSource,convert(varchar(7),Ord_SaveOrderDateTime,120)").Tables[0];
  535. //画柱状图
  536. for (int i = 0; i < this.dgv.SelectedRows.Count; i++)
  537. {
  538. //获取Series名称
  539. tempseries = new Series(this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim());
  540. tempseries.ChartType = (SeriesChartType)Enum.Parse(typeof(SeriesChartType), this.cmbtreevSeriesChartType.Tag.ToString());
  541. this.chart1.Series.Add(tempseries);
  542. this.chart1.Series[i].Color = mycolor[i];
  543. this.chart1.Series[i].Points.Clear();
  544. this.chart1.Series[i].ToolTip = this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim();
  545. for (int y = 0; y < Months.Length; y++)
  546. {
  547. int decCount = 0;
  548. string time = Convert.ToDateTime(numYear.Value + "-" + Months[y]).ToString("yyyy-MM");
  549. DataRow[] row = tbl.Select("日期 = '" + time + "' and 项目 = '" + this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim() + "'");
  550. if (row.Length > 0)
  551. { decCount = Convert.ToInt32(row[0]["数量"]); }
  552. tempseries.Points.AddXY(Months[y], decCount.ToString());
  553. if (decCount > 0)
  554. { tempseries.Points[y].IsValueShownAsLabel = true; }
  555. }
  556. }
  557. #endregion
  558. }
  559. else if (this.cmbtreevProjectSearch.Text.Trim() == "业绩")
  560. {
  561. #region
  562. string ExecuteSql = "with t AS " +
  563. "(" +
  564. "select Plu_Amount,convert(varchar(7),Plu_CreateTime,120) as 订单时间,Plu_OpenSingle AS 接单人员编号 " +
  565. "from tb_ErpPlusPickItems " +
  566. "left join tempTB_AggregationCustomer on Plu_OrdNumber=GP_OrderNumber " +
  567. "left join tb_ErpOrder on Plu_OrdNumber=Ord_Number " +
  568. "where " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Plu_CreateTime", StrStartTime, StrEndTime, DateAddDays: 0, ConnectWord: "") + StrWhere + " " +
  569. ") " +
  570. "select sum(Plu_Amount) as 金额,接单人员编号,订单时间 from t Group By 订单时间,接单人员编号;" +
  571. "with t AS " +
  572. "(" +
  573. "select Ord_SeriesPrice,convert(varchar(7),Ord_SaveOrderDateTime,120) as 订单时间" +
  574. ",(select stuff((select ','+OrdPe_OrdersPerson from tb_ErpOrdersPerson where OrdPe_OrderNumber = Ord_Number for xml path('')),1,1,'')) as 接单人员编号 " +
  575. "from tb_ErpOrder " +
  576. "left join tempTB_AggregationCustomer on Ord_Number=GP_OrderNumber " +
  577. "where " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_SaveOrderDateTime", StrStartTime, StrEndTime, DateAddDays: 0, ConnectWord: "") + StrWhere + " " +
  578. ")" +
  579. "select sum(Ord_SeriesPrice) as 金额,接单人员编号,订单时间 from t Group By 订单时间,接单人员编号";
  580. DataSet dtSet = orbll.GetView_Custom(ExecuteSql);
  581. DataTable tblEarly = dtSet.Tables["ds"];
  582. DataTable tblLater = dtSet.Tables["ds1"];
  583. //画柱状图
  584. for (int i = 0; i < this.dgv.SelectedRows.Count; i++)
  585. {
  586. string StrProjectName = this.dgv.SelectedRows[i].Cells["员工编号"].Value.ToString().Trim();
  587. string StrProjectValue = this.dgv.SelectedRows[i].Cells["项目名称"].Value.ToString().Trim();
  588. //获取Series名称
  589. tempseries = new Series(StrProjectValue);
  590. tempseries.ChartType = (SeriesChartType)Enum.Parse(typeof(SeriesChartType), this.cmbtreevSeriesChartType.Tag.ToString());
  591. this.chart1.Series.Add(tempseries);
  592. this.chart1.Series[i].Color = mycolor[i];
  593. this.chart1.Series[i].Points.Clear();
  594. this.chart1.Series[i].ToolTip = StrProjectValue;
  595. for (int y = 0; y < Months.Length; y++)
  596. {
  597. decimal decAoumnt = 0;
  598. string time = Convert.ToDateTime(numYear.Value + "-" + Months[y]).ToString("yyyy-MM");
  599. switch (this.cmbtreevPakName.Text.Trim())
  600. {
  601. case "全部":
  602. DataRow[] dtRow = tblEarly.Select("订单时间 = '" + time + "' and 接单人员编号 like '%" + StrProjectName + "%'");
  603. for (int t = 0; t < dtRow.Length; t++)
  604. { decAoumnt += Convert.ToInt32(dtRow[t]["金额"]); }
  605. DataRow[] dtRow1 = tblLater.Select("订单时间 = '" + time + "' and 接单人员编号 like '%" + StrProjectName + "%'");
  606. for (int t = 0; t < dtRow1.Length; t++)
  607. { decAoumnt = Convert.ToInt32(dtRow1[t]["金额"]); }
  608. break;
  609. case "订单前期":
  610. DataRow[] dtRow2 = tblEarly.Select("订单时间 = '" + time + "' and 接单人员编号 like '%" + StrProjectName + "%'");
  611. for (int t = 0; t < dtRow2.Length; t++)
  612. { decAoumnt += Convert.ToInt32(dtRow2[t]["金额"]); }
  613. break;
  614. case "订单后期":
  615. DataRow[] dtRow3 = tblLater.Select("订单时间 = '" + time + "' and 接单人员编号='" + StrProjectName + "'");
  616. for (int t = 0; t < dtRow3.Length; t++)
  617. { decAoumnt = Convert.ToInt32(dtRow3[t]["金额"]); }
  618. break;
  619. }
  620. tempseries.Points.AddXY(Months[y], decAoumnt.ToString());
  621. if (decAoumnt > 0)
  622. { tempseries.Points[y].IsValueShownAsLabel = true; }
  623. }
  624. }
  625. #endregion
  626. }
  627. else if (this.cmbtreevProjectSearch.Text.Trim() == "平均选片率")
  628. {
  629. #region
  630. string ExecuteSql = "select sum(Plu_Amount) as Plu_Amount,convert(varchar(7),Plu_CreateTime,120) as Plu_CreateTime " +
  631. "from tb_ErpPlusPickItems Left Join tb_ErpOrder on Ord_Number = Plu_OrdNumber " +
  632. "where Plu_SourceType = 1 " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Plu_CreateTime", StrStartTime, StrEndTime, DateAddDays: 0) + StrWhere + " " +
  633. "group by convert(varchar(7),Plu_CreateTime,120);" +
  634. "select distinct Plu_OrdNumber,convert(varchar(7),Plu_CreateTime,120) as Plu_CreateTime " +
  635. "from tb_ErpPlusPickItems Left Join tb_ErpOrder on Ord_Number = Plu_OrdNumber " +
  636. "where Plu_SourceType = 1 " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Plu_CreateTime", StrStartTime, StrEndTime, DateAddDays: 0) + StrWhere + ";" +
  637. "select Ordv_IntoRegisterAddPickQuantity,Ordv_IntoBottomAddPickQuantity,convert(varchar(7),Ordv_FilmSelectionTime,120) as Ordv_FilmSelectionTime " +
  638. "from tb_ErpOrder Left Join tb_ErpOrderDigital on Ordv_Number = Ord_Number " +
  639. "where Ordv_FilmSelectionStatus = 1 " + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ordv_FilmSelectionTime", StrStartTime, StrEndTime, DateAddDays: 0) + StrWhere + "";
  640. DataSet dtSet = orbll.GetView_Custom(ExecuteSql);
  641. DataTable tbl = dtSet.Tables["ds"];
  642. DataTable tbl1 = dtSet.Tables["ds1"];
  643. DataTable tbl2 = dtSet.Tables["ds2"];
  644. string[] StrArray = "平均入册加选(张),平均入底加选(张),平均选片加挑金额".Split(',');
  645. //画柱状图
  646. for (int i = 0; i < StrArray.Length; i++)
  647. {
  648. //获取Series名称
  649. tempseries = new Series(StrArray[i]);
  650. tempseries.ChartType = (SeriesChartType)Enum.Parse(typeof(SeriesChartType), this.cmbtreevSeriesChartType.Tag.ToString());
  651. this.chart1.Series.Add(tempseries);
  652. this.chart1.Series[i].Color = mycolor[i];
  653. this.chart1.Series[i].Points.Clear();
  654. this.chart1.Series[i].ToolTip = StrArray[i];
  655. for (int y = 0; y < Months.Length; y++)
  656. {
  657. decimal decAoumnt = 0;
  658. decimal decCount = 0;
  659. string StrTime = Convert.ToDateTime(numYear.Value + "-" + Months[y]).ToString("yyyy-MM");
  660. switch (StrArray[i].ToString().Trim())
  661. {
  662. case "平均入册加选(张)":
  663. DataRow[] dtRow = tbl2.Select("Ordv_FilmSelectionTime = '" + StrTime + "'");
  664. if (dtRow.Length > 0)
  665. {
  666. for (int t = 0; t < dtRow.Length; t++)
  667. { decCount += Convert.ToDecimal(dtRow[t]["Ordv_IntoRegisterAddPickQuantity"]); }
  668. decAoumnt = decCount / dtRow.Length;
  669. }
  670. break;
  671. case "平均入底加选(张)":
  672. DataRow[] dtRow1 = tbl2.Select("Ordv_FilmSelectionTime = '" + StrTime + "'");
  673. if (dtRow1.Length > 0)
  674. {
  675. for (int t = 0; t < dtRow1.Length; t++)
  676. { decCount += Convert.ToDecimal(dtRow1[t]["Ordv_IntoBottomAddPickQuantity"]); }
  677. decAoumnt = decCount / dtRow1.Length;
  678. }
  679. break;
  680. case "平均选片加挑金额":
  681. DataRow[] dtRow2 = tbl.Select("Plu_CreateTime = '" + StrTime + "'");
  682. if (dtRow2.Length > 0)
  683. { decCount = Convert.ToDecimal(dtRow2[0]["Plu_Amount"]); }
  684. DataRow[] dtRow3 = tbl1.Select("Plu_CreateTime = '" + StrTime + "'");
  685. if (dtRow3.Length > 0)
  686. { decAoumnt = decCount / dtRow3.Length; }
  687. break;
  688. }
  689. tempseries.Points.AddXY(Months[y], decAoumnt.ToString("N2"));
  690. if (decCount > 0)
  691. { tempseries.Points[y].IsValueShownAsLabel = true; }
  692. }
  693. }
  694. #endregion
  695. }
  696. }
  697. catch (Exception ex)
  698. { MessageBoxCustom.Show(ex.Message.ToString()); }
  699. }
  700. /// <summary>
  701. /// 图形选择事件
  702. /// </summary>
  703. /// <param name="sender"></param>
  704. /// <param name="e"></param>
  705. void cmbtreevSeriesChartType_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  706. {
  707. this.cmbtreevPakName_ComboBoxTree_NodeMouseClick(this, null);
  708. }
  709. /// <summary>
  710. /// 套系名称、类别选择
  711. /// </summary>
  712. /// <param name="sender"></param>
  713. /// <param name="e"></param>
  714. void cmbtreevTaoXiName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  715. {
  716. this.cmbtreevPakName_ComboBoxTree_NodeMouseClick(this, null);
  717. }
  718. /// <summary>
  719. /// 窗体大小发生事件
  720. /// </summary>
  721. /// <param name="sender"></param>
  722. /// <param name="e"></param>
  723. void FrmFinancialChart_Resize(object sender, EventArgs e)
  724. {
  725. switch (this.panelSeriesChartType.Location.Y)
  726. {
  727. case 3: this.flowLayoutPanel1.Height = 38; break;
  728. case 35: this.flowLayoutPanel1.Height = 68; break;
  729. }
  730. this.labelEx3.Location = new Point(this.labelEx3.Location.X, (this.panelEx4.Height / 2) - this.labelEx3.Height);
  731. }
  732. /// <summary>
  733. /// 查询
  734. /// </summary>
  735. /// <param name="sender"></param>
  736. /// <param name="e"></param>
  737. void btnQuery_Click(object sender, EventArgs e)
  738. {
  739. this.cmbtreevPakName_ComboBoxTree_NodeMouseClick(this, null);
  740. }
  741. /// <summary>
  742. /// 关闭
  743. /// </summary>
  744. /// <param name="sender"></param>
  745. /// <param name="e"></param>
  746. void btnColse_Click(object sender, EventArgs e)
  747. {
  748. this.Close();
  749. }
  750. /// <summary>
  751. /// 收缩点击事件
  752. /// </summary>
  753. /// <param name="sender"></param>
  754. /// <param name="e"></param>
  755. void panelEx4_Click(object sender, EventArgs e)
  756. {
  757. this.labelEx3_Click(this, null);
  758. }
  759. /// <summary>
  760. /// 收缩点击事件
  761. /// </summary>
  762. /// <param name="sender"></param>
  763. /// <param name="e"></param>
  764. void labelEx3_Click(object sender, EventArgs e)
  765. {
  766. if (this.labelEx3.Tag.ToString().Trim() == "A")
  767. {
  768. this.panelEx1.Visible = false;
  769. this.labelEx3.Text = " 》";
  770. this.labelEx3.Tag = "B";
  771. }
  772. else
  773. {
  774. this.panelEx1.Visible = true;
  775. this.labelEx3.Text = "《";
  776. this.labelEx3.Tag = "A";
  777. }
  778. }
  779. }
  780. }