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); } } } }