RefinedRepairOutStatistics.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm
  6. {
  7. public class RefinedRepairOutStatistics : LYFZ.Software.UI.DoorCityProcess.SuperSmallForm.RefinedRepairOutStatistics
  8. {
  9. public string frmType = "";
  10. public RefinedRepairOutStatistics()
  11. {
  12. this.btn_Search.Click += Btn_Search_Click;
  13. this.Load += RefinedRepairOutStatistics_Load;
  14. }
  15. private void RefinedRepairOutStatistics_Load(object sender, EventArgs e)
  16. {
  17. this.Text = frmType + "外发统计";
  18. }
  19. private void Btn_Search_Click(object sender, EventArgs e)
  20. {
  21. ActionBindData(dtpStartTime.Text.Trim(), dtpEndTime.Text.Trim());
  22. }
  23. void ActionBindData(string sTime,string eTime)
  24. {
  25. dgvOutSendStatic.Rows.Clear();
  26. BLL.BLL_ErpOrderDigital digBll = new BLL.BLL_ErpOrderDigital();
  27. System.Data.DataTable dt = new System.Data.DataTable();
  28. if (frmType == "初修")
  29. {
  30. dt = digBll.GetEarlyRepairOutStatic(sTime, eTime);
  31. }
  32. else if (frmType == "精修")
  33. {
  34. dt = digBll.GetRefinedRepairOutStatic(sTime, eTime);
  35. }
  36. foreach(System.Data.DataRow dr in dt.Rows)
  37. {
  38. System.Windows.Forms.DataGridViewRow dgvRow = new System.Windows.Forms.DataGridViewRow();
  39. System.Windows.Forms.DataGridViewCell cell = null;
  40. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  41. dgvRow.Cells.Add(cell);
  42. cell.Value = dr["Ord_Number"];
  43. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  44. dgvRow.Cells.Add(cell);
  45. cell.Value = dr["Cus_Name"];
  46. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  47. dgvRow.Cells.Add(cell);
  48. cell.Value = dr["Cus_Sex_cs"];
  49. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  50. dgvRow.Cells.Add(cell);
  51. cell.Value = dr["Cus_Telephone"];
  52. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  53. dgvRow.Cells.Add(cell);
  54. cell.Value = Enum.GetName(typeof(EnumPublic.OrderType), Convert.ToInt32(dr["Ord_Type"]));
  55. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  56. dgvRow.Cells.Add(cell);
  57. cell.Value = dr["Ordpg_Sights"];
  58. if (frmType == "初修")
  59. {
  60. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  61. dgvRow.Cells.Add(cell);
  62. cell.Value = dr["Ords_OutSendEarlyRepairVendor"];
  63. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  64. dgvRow.Cells.Add(cell);
  65. cell.Value = dr["Ords_OutSendEarlyRepairVendorQQ"];
  66. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  67. dgvRow.Cells.Add(cell);
  68. cell.Value = dr["Ords_OutSendEarlyRepairName"];
  69. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  70. dgvRow.Cells.Add(cell);
  71. cell.Value = dr["Ords_OutSendEarlyRepairTime"];
  72. }
  73. else if (frmType == "精修")
  74. {
  75. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  76. dgvRow.Cells.Add(cell);
  77. cell.Value = dr["Ords_OutSendRefineRepairVendor"];
  78. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  79. dgvRow.Cells.Add(cell);
  80. cell.Value = dr["Ords_OutSendRefineRepairVendorQQ"];
  81. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  82. dgvRow.Cells.Add(cell);
  83. cell.Value = dr["Ords_OutSendRefineRepairName"];
  84. cell = new System.Windows.Forms.DataGridViewTextBoxCell();
  85. dgvRow.Cells.Add(cell);
  86. cell.Value = dr["Ords_OutSendRefineRepairTime"];
  87. }
  88. dgvOutSendStatic.Rows.Add(dgvRow);
  89. }
  90. }
  91. }
  92. }