frmMaterialCutMgt.cs 1.6 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using CoreFS.CA06;
  9. namespace Core.StlMes.Client.ForgeResMgt
  10. {
  11. public partial class frmMaterialCutMgt : FrmBase
  12. {
  13. public frmMaterialCutMgt()
  14. {
  15. InitializeComponent();
  16. }
  17. private void frmMaterialCutMgt_Load(object sender, EventArgs e)
  18. {
  19. dsForgeJobPlan.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "1", "15000101", "Q235B", "280", "6000" });
  20. dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B" });
  21. dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "2", "生产", "150001", "153000102", "1530001", "Q235B" });
  22. dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "3", "退废", "150001", "153000103", "1530001", "Q235B" });
  23. dsForgeJobPlanList.Tables[0].Rows.Add(new object[] { "15100001", "4", "下发", "150001", "153000104", "1530001", "Q235B" });
  24. dsCutList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", false, "15300010101" });
  25. dsCutList.Tables[0].Rows.Add(new object[] { "15100001", "1", "生产", "150001", "153000101", "1530001", "Q235B", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", false, "15300010102" });
  26. }
  27. }
  28. }