123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm
- {
- public class RefinedRepairOutStatistics : LYFZ.Software.UI.DoorCityProcess.SuperSmallForm.RefinedRepairOutStatistics
- {
- public string frmType = "";
- public RefinedRepairOutStatistics()
- {
- this.btn_Search.Click += Btn_Search_Click;
- this.Load += RefinedRepairOutStatistics_Load;
- }
- private void RefinedRepairOutStatistics_Load(object sender, EventArgs e)
- {
- this.Text = frmType + "外发统计";
- }
- private void Btn_Search_Click(object sender, EventArgs e)
- {
- ActionBindData(dtpStartTime.Text.Trim(), dtpEndTime.Text.Trim());
- }
- void ActionBindData(string sTime,string eTime)
- {
- dgvOutSendStatic.Rows.Clear();
- BLL.BLL_ErpOrderDigital digBll = new BLL.BLL_ErpOrderDigital();
- System.Data.DataTable dt = new System.Data.DataTable();
- if (frmType == "初修")
- {
- dt = digBll.GetEarlyRepairOutStatic(sTime, eTime);
- }
- else if (frmType == "精修")
- {
- dt = digBll.GetRefinedRepairOutStatic(sTime, eTime);
- }
- foreach(System.Data.DataRow dr in dt.Rows)
- {
- System.Windows.Forms.DataGridViewRow dgvRow = new System.Windows.Forms.DataGridViewRow();
- System.Windows.Forms.DataGridViewCell cell = null;
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ord_Number"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Cus_Name"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Cus_Sex_cs"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Cus_Telephone"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = Enum.GetName(typeof(EnumPublic.OrderType), Convert.ToInt32(dr["Ord_Type"]));
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ordpg_Sights"];
- if (frmType == "初修")
- {
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendEarlyRepairVendor"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendEarlyRepairVendorQQ"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendEarlyRepairName"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendEarlyRepairTime"];
- }
- else if (frmType == "精修")
- {
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendRefineRepairVendor"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendRefineRepairVendorQQ"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendRefineRepairName"];
- cell = new System.Windows.Forms.DataGridViewTextBoxCell();
- dgvRow.Cells.Add(cell);
- cell.Value = dr["Ords_OutSendRefineRepairTime"];
- }
- dgvOutSendStatic.Rows.Add(dgvRow);
- }
-
- }
- }
- }
|