AnalyzedEmployeePerformanceFormMain.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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.UI.DecisionAssistant
  11. {
  12. public partial class AnalyzedEmployeePerformanceFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public AnalyzedEmployeePerformanceFormMain()
  15. {
  16. InitializeComponent();
  17. this.UcNavigationTool.LabTitle = "员工业绩分析";
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. this.labelEx1.BackColor = UIBlueThemeResources.TitleBackgroundColor;
  22. this.labelEx2.BackColor = UIBlueThemeResources.TitleBackgroundColor;
  23. int yearCount = DateTime.Now.Year;
  24. for(int i = yearCount-10 ; i<= yearCount ; i++)
  25. {
  26. cbo_CheckYear.Items.Add(i + "年");
  27. cbo_Year.Items.Add(i + "年");
  28. }
  29. cbo_CheckYear.SelectedItem = DateTime.Now.Year + "年";
  30. cbo_Year.SelectedItem = DateTime.Now.Year + "年";
  31. cbo_Mouth.SelectedItem = DateTime.Now.Month + "月";
  32. cbo_CheckMouth.SelectedItem = DateTime.Now.Month + "月";
  33. rdo_Day.Click += rdo_Day_Click;
  34. rdo_Mouth.Click += rdo_Day_Click;
  35. rdo_Stage.Click += rdo_Day_Click;
  36. rdo_Year.Click += rdo_Day_Click;
  37. cbo_Year.SelectedIndexChanged += cbo_Year_SelectedIndexChanged;
  38. cbo_Mouth.SelectedIndexChanged += cbo_Year_SelectedIndexChanged;
  39. cbo_CheckYear.SelectedIndexChanged += cbo_Year_SelectedIndexChanged;
  40. cbo_CheckMouth.SelectedIndexChanged += cbo_Year_SelectedIndexChanged;
  41. }
  42. void cbo_Year_SelectedIndexChanged(object sender, EventArgs e)
  43. {
  44. string controlName = (sender as Control).Name;
  45. switch(controlName)
  46. {
  47. case "cbo_Year":
  48. if(rdo_Mouth.Checked||rdo_Year.Checked)
  49. {
  50. dtDataTimeStart.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), dtDataTimeStart.Value.Month, dtDataTimeStart.Value.Day);
  51. dtDataTimeEnd.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), dtDataTimeEnd.Value.Month, dtDataTimeEnd.Value.Day);
  52. }
  53. break;
  54. case "cbo_Mouth":
  55. if (rdo_Mouth.Checked )
  56. {
  57. dtDataTimeStart.Value = new DateTime(dtDataTimeStart.Value.Year, Convert.ToInt32(cbo_Mouth.Text.Replace("月", "")), dtDataTimeStart.Value.Day);
  58. if (rdo_Mouth.Checked)
  59. {
  60. dtDataTimeEnd.Value = new DateTime(dtDataTimeEnd.Value.Year, Convert.ToInt32(cbo_Mouth.Text.Replace("月", "")), 1);
  61. dtDataTimeEnd.Value = dtDataTimeEnd.Value.AddMonths(1).AddDays(-1);
  62. }
  63. else if (rdo_Day.Checked)
  64. {
  65. dtDataTimeEnd.Value = new DateTime(dtDataTimeStart.Value.Year, dtDataTimeStart.Value.Month, dtDataTimeStart.Value.Day);
  66. }
  67. }
  68. break;
  69. case "cbo_CheckYear":
  70. if (rdo_Mouth.Checked || rdo_Year.Checked)
  71. {
  72. dtDataTimeStartCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), dtDataTimeStartCompared.Value.Month, dtDataTimeStartCompared.Value.Day);
  73. dtDateTimeEndCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), dtDateTimeEndCompared.Value.Month, dtDateTimeEndCompared.Value.Day);
  74. }
  75. break;
  76. case "cbo_CheckMouth":
  77. if (rdo_Mouth.Checked)
  78. {
  79. dtDataTimeStartCompared.Value = new DateTime(dtDataTimeStartCompared.Value.Year, Convert.ToInt32(cbo_CheckMouth.Text.Replace("月", "")), dtDataTimeStartCompared.Value.Day);
  80. if (rdo_Mouth.Checked)
  81. {
  82. dtDateTimeEndCompared.Value = new DateTime(dtDateTimeEndCompared.Value.Year, Convert.ToInt32(cbo_CheckMouth.Text.Replace("月", "")), 1);
  83. dtDateTimeEndCompared.Value = dtDateTimeEndCompared.Value.AddMonths(1).AddDays(-1);
  84. }
  85. else if (rdo_Day.Checked)
  86. {
  87. dtDateTimeEndCompared.Value = new DateTime(dtDataTimeStartCompared.Value.Year, dtDataTimeStartCompared.Value.Month, dtDataTimeStartCompared.Value.Day);
  88. }
  89. }
  90. break;
  91. }
  92. }
  93. public void rdo_Day_Click(object sender, EventArgs e)
  94. {
  95. if(rdo_Day.Checked)
  96. {
  97. ShowAndHideControl("day");
  98. dtDataTimeEnd.Value = new DateTime(dtDataTimeStart.Value.Year, dtDataTimeStart.Value.Month, dtDataTimeStart.Value.Day);
  99. if (chkComparedStartUp.Checked)
  100. {
  101. dtDateTimeEndCompared.Value = new DateTime(dtDataTimeStartCompared.Value.Year, dtDataTimeStartCompared.Value.Month, dtDataTimeStartCompared.Value.Day);
  102. }
  103. }
  104. else if (rdo_Mouth.Checked)
  105. {
  106. ShowAndHideControl("mouth");
  107. dtDataTimeStart.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), Convert.ToInt32(cbo_Mouth.Text.Replace("月", "")), 1);
  108. dtDataTimeEnd.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), Convert.ToInt32(cbo_Mouth.Text.Replace("月", "")), 1);
  109. dtDataTimeEnd.Value = dtDataTimeEnd.Value.AddMonths(1).AddDays(-1);
  110. if (chkComparedStartUp.Checked)
  111. {
  112. dtDataTimeStartCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), Convert.ToInt32(cbo_CheckMouth.Text.Replace("月", "")), 1);
  113. dtDateTimeEndCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), Convert.ToInt32(cbo_CheckMouth.Text.Replace("月", "")), 1);
  114. dtDateTimeEndCompared.Value = dtDateTimeEndCompared.Value.AddMonths(1).AddDays(-1);
  115. }
  116. }
  117. else if (rdo_Year.Checked)
  118. {
  119. ShowAndHideControl("year");
  120. dtDataTimeStart.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), 1, 1);
  121. dtDataTimeEnd.Value = new DateTime(Convert.ToInt32(cbo_Year.Text.Replace("年", "")), 12, 31);
  122. if (chkComparedStartUp.Checked)
  123. {
  124. dtDataTimeStartCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), 1, 1);
  125. dtDateTimeEndCompared.Value = new DateTime(Convert.ToInt32(cbo_CheckYear.Text.Replace("年", "")), 12, 31);
  126. }
  127. }
  128. else if (rdo_Stage.Checked)
  129. {
  130. ShowAndHideControl("stage");
  131. }
  132. }
  133. void ShowAndHideControl(string type)
  134. {
  135. dtDataTimeStart.Visible = false;
  136. dtDataTimeEnd.Visible = false;
  137. cbo_Year.Visible = false;
  138. cbo_Mouth.Visible = false;
  139. if (chkComparedStartUp.Checked)
  140. {
  141. labelEx3.Visible = false;
  142. dtDataTimeStartCompared.Visible = false;
  143. dtDateTimeEndCompared.Visible = false;
  144. cbo_CheckYear.Visible = false;
  145. cbo_CheckMouth.Visible = false;
  146. }
  147. labelEx4.Visible = false;
  148. switch(type)
  149. {
  150. case "day":
  151. dtDataTimeStart.Visible = true;
  152. if (chkComparedStartUp.Checked)
  153. {
  154. dtDataTimeStartCompared.Visible = true;
  155. }
  156. break;
  157. case "mouth":
  158. cbo_Year.Visible = true;
  159. cbo_Mouth.Visible = true;
  160. if (chkComparedStartUp.Checked)
  161. {
  162. cbo_CheckYear.Visible = true;
  163. cbo_CheckMouth.Visible = true;
  164. }
  165. break;
  166. case "year":
  167. cbo_Year.Visible = true;
  168. if (chkComparedStartUp.Checked)
  169. {
  170. cbo_CheckYear.Visible = true;
  171. }
  172. break;
  173. case "stage":
  174. labelEx4.Visible = true;
  175. dtDataTimeStart.Visible = true;
  176. dtDataTimeEnd.Visible = true;
  177. if (chkComparedStartUp.Checked)
  178. {
  179. labelEx3.Visible = true;
  180. dtDataTimeStartCompared.Visible = true;
  181. dtDateTimeEndCompared.Visible = true;
  182. }
  183. break;
  184. }
  185. }
  186. }
  187. }