| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System.Collections.Generic;
- using System.Linq;
- using com.steering.mes.mcp.entity;
- using Core.Mes.Client.Comm.Control;
- using Core.Mes.Client.Comm.Tool;
- using Core.StlMes.Client.Mcp.Control.Entity;
- using System.Windows.Forms;
- using Core.StlMes.Client.Mcp.Control.Machining;
- using CoreFS.CA06;
- namespace Core.StlMes.Client.Mcp.Mch.Report
- {
- public partial class FrmMchWasterApprovedReport : FrmReportBase
- {
- public FrmMchWasterApprovedReport()
- {
- InitializeComponent();
- chkYear.Text = "审核年月";
- }
- protected override void LoadView()
- {
- DataBindingSource.DataSource = typeof(MchWaste);
- EntityHelper.ShowGridCaption<MchWaste>(CrackDetectGrid.DisplayLayout.Bands[0]);
- QueryShows = new List<QueryShow>()
- {
- QueryShow.YearMonthDate,
- QueryShow.OrderNo,
- QueryShow.JudgeStove,
- QueryShow.BatchNo,
- QueryShow.Plines
- };
- ViewList = new List<string>
- {
- "BalYearMonthFail",
- "JudgeStoveNo",
- "BatchNo",
- "PlineName",
- "Producname",
- "Steelname",
- "Gradename",
- "Outdiameter",
- "Wallthick",
- "ModelDesc",
- "OrderNo"
- };
- ProductionInfo = new List<string>
- {
- "Point",
- "Reason",
- "ActCount",
- "ActWeight",
-
-
- };
- OperationInfo = new List<string>
- {
- };
- }
- protected override void QuerySinglePlan()
- {
- DataBindingSource.DataSource = EntityHelper.GetData<MchWaste>(
- "com.steering.mes.mcp.Mch.FrmJgxReport.doQueryMchWaste",
- GetQueryCondition(),
- ob);
- }
- }
- }
|