| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- using CoreFS.CA06;
- namespace Core.StlMes.Client.ForgeResMgt
- {
- public partial class frmMaterialCutMgt : FrmBase
- {
- public frmMaterialCutMgt()
- {
- InitializeComponent();
- }
- private void frmMaterialCutMgt_Load(object sender, EventArgs e)
- {
- dsForgeJobPlan.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "1", "15000101", "Q235B", "280", "6000" });
- dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B" });
- dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "2", "生产", "150001", "153000102", "1530001", "Q235B" });
- dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "3", "退废", "150001", "153000103", "1530001", "Q235B" });
- dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "4", "下发", "150001", "153000104", "1530001", "Q235B" });
- dsCutList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", false, "15300010101" });
- dsCutList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", false, "15300010102" });
- }
- }
- }
|