using Mesnac.Action.Base; using Mesnac.Codd.Session; using Mesnac.Controls.Default; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.LjReport.DayWhiteEmbryo { public class GhWuLiaoInitDb : ChemicalWeighingAction, IAction { private RuntimeParameter _runtime; MCButton selectButton; MCDateTimePicker startDate; MCDateTimePicker startTime; MCDateTimePicker endDate; MCDateTimePicker endTime; MCDataGridView dataGridView; MCDataGridView moreData; DataTable dt; DataTable MoreDataTable; List list; public void Run(RuntimeParameter runtime) { base.RunIni(runtime); //必须调用 this._runtime = runtime; var control = GetAllControls(); dataGridView = control.FirstOrDefault(x => x.Name == "MCDataGridView1") as MCDataGridView; selectButton = control.FirstOrDefault(x => x.Name == "SelectButton") as MCButton; startDate = control.FirstOrDefault(x => x.Name == "startDate") as MCDateTimePicker; startTime = control.FirstOrDefault(x => x.Name == "startTime") as MCDateTimePicker; endDate = control.FirstOrDefault(x => x.Name == "endDate") as MCDateTimePicker; endTime = control.FirstOrDefault(x => x.Name == "endTime") as MCDateTimePicker; dataGridView.AutoGenerateColumns = true; startDate.Value = DateTime.Now.AddDays(-1); selectButton.Click += SelectButton_Click; dt = new DataTable(); dt.Columns.Add("机台", typeof(string)); dt.Columns.Add("小料1总量", typeof(string)); dt.Columns.Add("小料2总量", typeof(string)); dt.Columns.Add("木粉总量", typeof(string)); dt.Columns.Add("炭酸钙总量", typeof(string)); dt.Columns.Add("木薯粉总量", typeof(string)); dt.Columns.Add("玉米粉总量", typeof(string)); dt.Columns.Add("炭粉1总量", typeof(string)); dt.Columns.Add("炭粉2总量", typeof(string)); dt.Columns.Add("炭粉3总量", typeof(string)); dt.Columns.Add("炭粉4总量", typeof(string)); dt.Columns.Add("炭粉5总量", typeof(string)); dt.Columns.Add("炭粉6总量", typeof(string)); dt.Columns.Add("炭粉7总量", typeof(string)); dt.Columns.Add("炭粉8总量", typeof(string)); dt.Columns.Add("回收总量", typeof(string)); //MoreDataTable = new DataTable(); //MoreDataTable.Columns.Add("重量", typeof(string)); //MoreDataTable.Columns.Add("时间", typeof(string)); //btnOk.Click += BtnOk_Click; //selectButton.Click += SelectButton_Click; //dataGridView.CellClick += MoreData_Click; //dataGridView.CellValueChanged += MoreData_Click; //WhiteWork.Click += WhiteWork_Click; //NightWork.Click += NightWork_Click; } private void SelectButton_Click(object sender, EventArgs e) { DbHelper dbHelper = Mesnac.Basic.DataSourceFactory.Instance.GetDbHelper(Mesnac.Basic.DataSourceFactory.MCDbType.Local); dt.Rows.Clear(); DateTime starttime = startDate.Value.Date.AddHours(startTime.Value.Hour).AddMinutes(startTime.Value.Minute).AddSeconds(startTime.Value.Second); DateTime endtime = endDate.Value.Date.AddHours(endTime.Value.Hour).AddMinutes(endTime.Value.Minute).AddSeconds(endTime.Value.Second); string statValue = starttime.ToString("yyyy-MM-dd HH:mm:ss"); string endValue = endtime.ToString("yyyy-MM-dd HH:mm:ss"); list = new List(); for (int i = 1; i <5; i++) { string sql = $"select t1.batch ,t1.matCode,\r\n " + $" t1.actValue, t1.actToler\r\n " + $" from Report_DryDos_Detail t1\r\n" + $"where eqNo='{i}' and recordTime>'{statValue}' and recordTime<='{endValue}'"; dbHelper.CommandText = sql.ToString(); dbHelper.CommandType = CommandType.Text; DataTable table2 = dbHelper.ToDataTable(); foreach (DataRow dr in table2.Rows) { GhWuLiaoIniEntity entity = new GhWuLiaoIniEntity(); entity.eqNo = i; entity.matCode = Convert.ToInt32(dr["matCode"].ToString()); entity.actValue = Convert.ToSingle(dr["actValue"].ToString()); list.Add(entity); } } dt.Rows.Clear(); var drTotal=dt.NewRow(); drTotal[0] = "总计"; for (int i = 1; i < 5; i++) { DataRow dr = dt.NewRow(); dr[0] = "干混机" + i; for (int j = 1; j <=15; j++) { var actValue= list.Where(x=>x.eqNo==i) .Where(x=>x.matCode==j).Sum(x=>x.actValue); dr[j] = actValue.ToString("#0.00"); } dt.Rows.Add(dr); } for (int j = 1; j <= 15; j++) { drTotal[j] = list .Where(x => x.matCode == j).Sum(x => x.actValue).ToString("#0.00"); } dt.Rows.Add(drTotal); this.dataGridView.AutoGenerateColumns = true; this.dataGridView.DataSource = null; this.dataGridView.DataSource = dt; } } public class GhWuLiaoIniEntity { public int eqNo { get; set; } /// /// 物料编码 /// public int matCode { get; set; } public float actValue { get; set; } } }