FrmStoredValueReport.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.UI.StatisticalInquiry
  10. {
  11. public partial class FrmStoredValueReport : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public FrmStoredValueReport()
  14. {
  15. InitializeComponent();
  16. this.UcNavigationTool.LabTitle = "储值卡统计表";
  17. rdoDay.Click += rdoDay_Click;
  18. rdoMouth.Click += rdoMouth_Click;
  19. rdoYear.Click += rdoYear_Click;
  20. btnQuery.Click += btnQuery_Click;
  21. this.Load += FrmStoredValueReport_Load;
  22. dtpStart.ValueChanged += dtpStart_ValueChanged;
  23. dtpEnd.ValueChanged += dtpEnd_ValueChanged;
  24. }
  25. void dtpStart_ValueChanged(object sender, EventArgs e)
  26. {
  27. if(rdoDay.Checked)
  28. {
  29. dtpEnd.Value = dtpStart.Value;
  30. }
  31. else if(rdoMouth.Checked)
  32. {
  33. dtpStart.Value = new DateTime(dtpStart.Value.Year, dtpStart.Value.Month, 1);
  34. DateTime tempDateTime = new DateTime(dtpStart.Value.Year, dtpStart.Value.Month, 1);
  35. tempDateTime = tempDateTime.AddMonths(1);
  36. dtpEnd.Value = tempDateTime.AddDays(-1);
  37. }
  38. else if(rdoYear.Checked)
  39. {
  40. dtpStart.Value = new DateTime(dtpStart.Value.Year, 1, 1);
  41. dtpEnd.Value = new DateTime(dtpStart.Value.Year, 12, 31);
  42. }
  43. //btnQuery_Click(null, null);
  44. }
  45. void dtpEnd_ValueChanged(object sender, EventArgs e)
  46. {
  47. if (rdoDay.Checked)
  48. {
  49. dtpStart.Value = dtpEnd.Value;
  50. }
  51. else if (rdoMouth.Checked)
  52. {
  53. dtpStart.Value = new DateTime(dtpEnd.Value.Year, dtpEnd.Value.Month, 1);
  54. DateTime tempDateTime = new DateTime(dtpEnd.Value.Year, dtpEnd.Value.Month, 1);
  55. tempDateTime = tempDateTime.AddMonths(1);
  56. dtpEnd.Value = tempDateTime.AddDays(-1);
  57. }
  58. else if (rdoYear.Checked)
  59. {
  60. dtpStart.Value = new DateTime(dtpEnd.Value.Year, 1, 1);
  61. dtpEnd.Value = new DateTime(dtpEnd.Value.Year, 12, 31);
  62. }
  63. //btnQuery_Click(null, null);
  64. }
  65. void FrmStoredValueReport_Load(object sender, EventArgs e)
  66. {
  67. dtpStart.Value = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day);
  68. dtpEnd.Value = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day);
  69. rdoDay.Checked = true;
  70. }
  71. public virtual void btnQuery_Click(object sender, EventArgs e)
  72. {
  73. }
  74. void rdoYear_Click(object sender, EventArgs e)
  75. {
  76. dtpStart.Value = new DateTime(DateTime.Now.Year, 1, 1);
  77. dtpEnd.Value = new DateTime(DateTime.Now.Year, 12, 31);
  78. //btnQuery_Click(null, null);
  79. }
  80. void rdoMouth_Click(object sender, EventArgs e)
  81. {
  82. dtpStart.Value = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);
  83. DateTime endDataTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);
  84. endDataTime = endDataTime.AddMonths(1);
  85. dtpEnd.Value = endDataTime.AddDays(-1);
  86. //btnQuery_Click(null, null);
  87. }
  88. void rdoDay_Click(object sender, EventArgs e)
  89. {
  90. dtpStart.Value = DateTime.Now;
  91. dtpEnd.Value = DateTime.Now;
  92. //btnQuery_Click(null, null);
  93. }
  94. }
  95. }