From 796126e3f8bbb628a00e0b3b62753dbd323b8a70 Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期二, 19 十一月 2024 15:04:13 +0800 Subject: [PATCH] 工单 --- DevApp/Gs.DevApp/Properties/Resources.Designer.cs | 50 DevApp/Gs.DevApp/Resources/ico_check.png | 0 DevApp/Gs.DevApp/Gs.DevApp.csproj | 14 DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemIns.Designer.cs | 24 DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.cs | 8 DevApp/Gs.DevApp/ToolBox/MsgHelper.cs | 8 DevApp/Gs.DevApp/Resources/add_32x32.png | 0 DevApp/Gs.DevApp/Resources/ico_noCheck.png | 0 DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs | 22 DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.Designer.cs | 3629 +++++++++++++++++++++++++++++++++++++++++++++++++ DevApp/Gs.DevApp/Resources/wordwrap_32x32.png | 0 DevApp/Gs.DevApp/UserControl/UcLoading.Designer.cs | 28 DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs | 44 DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs | 31 DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.cs | 305 ++++ DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.Designer.cs | 16 DevApp/Gs.DevApp/Properties/Resources.resx | 49 DevApp/Gs.DevApp/Resources/copymodeldifferences_32x32.png | 0 DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.resx | 120 + 19 files changed, 4,290 insertions(+), 58 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.Designer.cs b/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.Designer.cs index a3db68d..6863978 100644 --- a/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.Designer.cs +++ b/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.Designer.cs @@ -57,6 +57,7 @@ this.txt_begTime = new System.Windows.Forms.DateTimePicker(); this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); this.lbGuid = new System.Windows.Forms.Label(); + this.picCheckBox = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.txt_name.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gcMain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); @@ -66,6 +67,7 @@ this.xtraTabPage2.SuspendLayout(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txt_workshopNo.Properties)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCheckBox)).BeginInit(); this.SuspendLayout(); // // gv_createTime @@ -397,11 +399,23 @@ this.lbGuid.TabIndex = 1; this.lbGuid.Visible = false; // + // picCheckBox + // + this.picCheckBox.Image = global::Gs.DevApp.Properties.Resources.ico_noCheck; + this.picCheckBox.Location = new System.Drawing.Point(947, 55); + this.picCheckBox.Name = "picCheckBox"; + this.picCheckBox.Size = new System.Drawing.Size(100, 50); + this.picCheckBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.picCheckBox.TabIndex = 4; + this.picCheckBox.TabStop = false; + this.picCheckBox.Visible = false; + // // Frm_Holidy // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1139, 496); + this.Controls.Add(this.picCheckBox); this.Controls.Add(this.xtraTabControl1); this.Controls.Add(this.toolBarMenu1); this.Name = "Frm_Holidy"; @@ -415,6 +429,7 @@ this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txt_workshopNo.Properties)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picCheckBox)).EndInit(); this.ResumeLayout(false); } @@ -449,5 +464,6 @@ private DevExpress.XtraEditors.LookUpEdit txt_workshopNo; private DevExpress.XtraGrid.Columns.GridColumn gv_workName; private DevExpress.XtraGrid.Columns.GridColumn gridColumn1; + private System.Windows.Forms.PictureBox picCheckBox; } } \ No newline at end of file diff --git a/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.cs b/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.cs index 1d34667..80e28c1 100644 --- a/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.cs +++ b/DevApp/Gs.DevApp/DevFrm/BasicData/Frm_Holidy.cs @@ -6,7 +6,6 @@ using DevExpress.XtraEditors; using DevExpress.XtraEditors.Controls; using DevExpress.XtraGrid.Views.Grid; -using FastReport.Dialog; using Gs.DevApp.Entity; using Gs.DevApp.ToolBox; using Gs.DevApp.UserControl; @@ -33,12 +32,15 @@ toolBarMenu1.btnChkClick += ToolBarMenu1_btnChkClick; toolBarMenu1.btnFChkClick += ToolBarMenu1_btnFChkClick; gcMain.MouseDoubleClick += GcMain_MouseDoubleClick; + gridView1.FocusedRowChanged += (s, e) => + { + UtilityHelper.SetCheckIco(s, picCheckBox, this); + }; gridView1.CustomDrawRowIndicator += GridView1_CustomDrawRowIndicator; getPageList(1, UtilityHelper.GetPageSize()); pageBar1.PagerEvent += PageBar1_PagerEvent; } - private void GridView1_CustomDrawRowIndicator(object sender, RowIndicatorCustomDrawEventArgs e) @@ -148,7 +150,7 @@ } getModel(rowGuid, true, 1); - + } /// <summary> /// 鍒犻櫎浜嬩欢 diff --git a/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.Designer.cs b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.Designer.cs new file mode 100644 index 0000000..53cdfb7 --- /dev/null +++ b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.Designer.cs @@ -0,0 +1,3629 @@ +/* Create By GS EasyCode */ +namespace Gs.DevApp.DevFrm +{ + partial class Frm_Womcaa + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + //BQSetControlObject + this.gvMx1materialType = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1useRate = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1mustQty = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1funitid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1fmaterialtype = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1erpXsddh = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1freplacegroup = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1fownertypeid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1fsaleorderno = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1parentItemName = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1mainProductQty = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1mainProduct = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1packingListNumber = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1customerItemNumber = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1scraprate = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1scrapqty = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1denominator = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1numerator = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1supplyType = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1issueType = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1depotCode = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1lot = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1mtono = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1ownerId = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1supplyOrganization = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1issuingOrganization = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1positionNo = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1eid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1pid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab014 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab012 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab009 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab008 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab007 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab006 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab003 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab002 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1cab001 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1erpid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gvMx1guid = new DevExpress.XtraGrid.Columns.GridColumn(); + this.tabMxPage1 = new DevExpress.XtraTab.XtraTabPage(); + this.gcMx1 = new DevExpress.XtraGrid.GridControl(); + this.gvMx1 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.lb_btbz = new DevExpress.XtraEditors.LabelControl(); + this.txt_btbz = new DevExpress.XtraEditors.TextEdit(); + this.gv_btbz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_fpurorderentryseq = new DevExpress.XtraEditors.LabelControl(); + this.txt_fpurorderentryseq = new DevExpress.XtraEditors.TextEdit(); + this.gv_fpurorderentryseq = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_fpurorderno = new DevExpress.XtraEditors.LabelControl(); + this.txt_fpurorderno = new DevExpress.XtraEditors.TextEdit(); + this.gv_fpurorderno = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa025 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa025 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa025 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpBzds = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpBzds = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpBzds = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpJjds = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpJjds = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpJjds = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpRkhz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpRkhz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpRkhz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpRkzz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpRkzz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpRkzz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpSlzz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpSlzz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpSlzz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpFlzz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpFlzz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpFlzz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpGyzz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpGyzz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpGyzz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa0111 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa0111 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa0111 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_ypNum = new DevExpress.XtraEditors.LabelControl(); + this.txt_ypNum = new DevExpress.XtraEditors.TextEdit(); + this.gv_ypNum = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_jaTime = new DevExpress.XtraEditors.LabelControl(); + this.txt_jaTime = new DevExpress.XtraEditors.TextEdit(); + this.gv_jaTime = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_jaBs = new DevExpress.XtraEditors.LabelControl(); + this.txt_jaBs = new DevExpress.XtraEditors.TextEdit(); + this.gv_jaBs = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_type = new DevExpress.XtraEditors.LabelControl(); + this.txt_type = new DevExpress.XtraEditors.TextEdit(); + this.gv_type = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_customer = new DevExpress.XtraEditors.LabelControl(); + this.txt_customer = new DevExpress.XtraEditors.TextEdit(); + this.gv_customer = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_customerName = new DevExpress.XtraEditors.LabelControl(); + this.txt_customerName = new DevExpress.XtraEditors.TextEdit(); + this.gv_customerName = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_packingListNumber = new DevExpress.XtraEditors.LabelControl(); + this.txt_packingListNumber = new DevExpress.XtraEditors.TextEdit(); + this.gv_packingListNumber = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_customerItemNumber = new DevExpress.XtraEditors.LabelControl(); + this.txt_customerItemNumber = new DevExpress.XtraEditors.TextEdit(); + this.gv_customerItemNumber = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_mainProductQty = new DevExpress.XtraEditors.LabelControl(); + this.txt_mainProductQty = new DevExpress.XtraEditors.TextEdit(); + this.gv_mainProductQty = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_mainProductNo = new DevExpress.XtraEditors.LabelControl(); + this.txt_mainProductNo = new DevExpress.XtraEditors.TextEdit(); + this.gv_mainProductNo = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpWtzz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpWtzz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpWtzz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpSczz = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpSczz = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpSczz = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_srcSplitBillno = new DevExpress.XtraEditors.LabelControl(); + this.txt_srcSplitBillno = new DevExpress.XtraEditors.TextEdit(); + this.gv_srcSplitBillno = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_closeType = new DevExpress.XtraEditors.LabelControl(); + this.txt_closeType = new DevExpress.XtraEditors.TextEdit(); + this.gv_closeType = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_forceCloserid = new DevExpress.XtraEditors.LabelControl(); + this.txt_forceCloserid = new DevExpress.XtraEditors.TextEdit(); + this.gv_forceCloserid = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_saleOrderEntryseq = new DevExpress.XtraEditors.LabelControl(); + this.txt_saleOrderEntryseq = new DevExpress.XtraEditors.TextEdit(); + this.gv_saleOrderEntryseq = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_saleOrderNo = new DevExpress.XtraEditors.LabelControl(); + this.txt_saleOrderNo = new DevExpress.XtraEditors.TextEdit(); + this.gv_saleOrderNo = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_srcBillentryseq = new DevExpress.XtraEditors.LabelControl(); + this.txt_srcBillentryseq = new DevExpress.XtraEditors.TextEdit(); + this.gv_srcBillentryseq = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_srcBillNo = new DevExpress.XtraEditors.LabelControl(); + this.txt_srcBillNo = new DevExpress.XtraEditors.TextEdit(); + this.gv_srcBillNo = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_srcBillType = new DevExpress.XtraEditors.LabelControl(); + this.txt_srcBillType = new DevExpress.XtraEditors.TextEdit(); + this.gv_srcBillType = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_createType = new DevExpress.XtraEditors.LabelControl(); + this.txt_createType = new DevExpress.XtraEditors.TextEdit(); + this.gv_createType = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa015Head = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa015Head = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa015Head = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_lot = new DevExpress.XtraEditors.LabelControl(); + this.txt_lot = new DevExpress.XtraEditors.TextEdit(); + this.gv_lot = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_mtono = new DevExpress.XtraEditors.LabelControl(); + this.txt_mtono = new DevExpress.XtraEditors.TextEdit(); + this.gv_mtono = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_stockInlimitl = new DevExpress.XtraEditors.LabelControl(); + this.txt_stockInlimitl = new DevExpress.XtraEditors.TextEdit(); + this.gv_stockInlimitl = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_stockInlimith = new DevExpress.XtraEditors.LabelControl(); + this.txt_stockInlimith = new DevExpress.XtraEditors.TextEdit(); + this.gv_stockInlimith = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_planId = new DevExpress.XtraEditors.LabelControl(); + this.txt_planId = new DevExpress.XtraEditors.TextEdit(); + this.gv_planId = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_workGroupId = new DevExpress.XtraEditors.LabelControl(); + this.txt_workGroupId = new DevExpress.XtraEditors.TextEdit(); + this.gv_workGroupId = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_createDate = new DevExpress.XtraEditors.LabelControl(); + this.txt_createDate = new DevExpress.XtraEditors.TextEdit(); + this.gv_createDate = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_depotCode = new DevExpress.XtraEditors.LabelControl(); + this.txt_depotCode = new DevExpress.XtraEditors.TextEdit(); + this.gv_depotCode = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_workShopId = new DevExpress.XtraEditors.LabelControl(); + this.txt_workShopId = new DevExpress.XtraEditors.TextEdit(); + this.gv_workShopId = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_routingId = new DevExpress.XtraEditors.LabelControl(); + this.txt_routingId = new DevExpress.XtraEditors.TextEdit(); + this.gv_routingId = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa024 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa024 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa024 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa023 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa023 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa023 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa022 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa022 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa022 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_checkUser = new DevExpress.XtraEditors.LabelControl(); + this.txt_checkUser = new DevExpress.XtraEditors.TextEdit(); + this.gv_checkUser = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_checkDate = new DevExpress.XtraEditors.LabelControl(); + this.txt_checkDate = new DevExpress.XtraEditors.TextEdit(); + this.gv_checkDate = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_fstatus = new DevExpress.XtraEditors.LabelControl(); + this.txt_fstatus = new DevExpress.XtraEditors.TextEdit(); + this.gv_fstatus = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa021 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa021 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa021 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa020 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa020 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa020 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa019 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa019 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa019 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa018 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa018 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa018 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa017 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa017 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa017 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa016 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa016 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa016 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa015 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa015 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa015 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa013 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa013 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa013 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa012 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa012 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa012 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa011 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa011 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa011 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa010 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa010 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa010 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa009 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa009 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa009 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa006 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa006 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa006 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa005 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa005 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa005 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa004 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa004 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa004 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_caa001 = new DevExpress.XtraEditors.LabelControl(); + this.txt_caa001 = new DevExpress.XtraEditors.TextEdit(); + this.gv_caa001 = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_erpid = new DevExpress.XtraEditors.LabelControl(); + this.txt_erpid = new DevExpress.XtraEditors.TextEdit(); + this.gv_erpid = new DevExpress.XtraGrid.Columns.GridColumn(); + + this.lb_guid = new DevExpress.XtraEditors.LabelControl(); + this.txt_guid = new DevExpress.XtraEditors.TextEdit(); + this.gv_guid = new DevExpress.XtraGrid.Columns.GridColumn(); + + //BQSetControlInfo + this.gvMx1materialType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1materialType.AppearanceCell.Options.UseFont = true; + this.gvMx1materialType.FieldName = "materialType"; + this.gvMx1materialType.Caption = "瀛愰」绫诲瀷 1鏍囧噯浠� 2杩旇繕浠� 3鏇夸唬浠� "; + this.gvMx1materialType.Tag = "query_a.Material_Type"; + this.gvMx1materialType.MinWidth = 50; + this.gvMx1materialType.Visible = true; + this.gvMx1materialType.Width = 94; + this.gvMx1materialType.OptionsColumn.AllowEdit = true; + this.gvMx1materialType.VisibleIndex = 0; + + this.gvMx1useRate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1useRate.AppearanceCell.Options.UseFont = true; + this.gvMx1useRate.FieldName = "useRate"; + this.gvMx1useRate.Caption = "浣跨敤姣斾緥锛�%锛� "; + this.gvMx1useRate.Tag = "query_a.Use_Rate"; + this.gvMx1useRate.MinWidth = 50; + this.gvMx1useRate.Visible = true; + this.gvMx1useRate.Width = 94; + this.gvMx1useRate.OptionsColumn.AllowEdit = true; + this.gvMx1useRate.VisibleIndex = 0; + + this.gvMx1mustQty.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1mustQty.AppearanceCell.Options.UseFont = true; + this.gvMx1mustQty.FieldName = "mustQty"; + this.gvMx1mustQty.Caption = "搴斿彂鏁伴噺 "; + this.gvMx1mustQty.Tag = "query_a.Must_Qty"; + this.gvMx1mustQty.MinWidth = 50; + this.gvMx1mustQty.Visible = true; + this.gvMx1mustQty.Width = 94; + this.gvMx1mustQty.OptionsColumn.AllowEdit = true; + this.gvMx1mustQty.VisibleIndex = 0; + + this.gvMx1funitid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1funitid.AppearanceCell.Options.UseFont = true; + this.gvMx1funitid.FieldName = "funitid"; + this.gvMx1funitid.Caption = "FUNITID "; + this.gvMx1funitid.Tag = "query_a.FUNITID"; + this.gvMx1funitid.MinWidth = 50; + this.gvMx1funitid.Visible = true; + this.gvMx1funitid.Width = 94; + this.gvMx1funitid.OptionsColumn.AllowEdit = true; + this.gvMx1funitid.VisibleIndex = 0; + + this.gvMx1fmaterialtype.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1fmaterialtype.AppearanceCell.Options.UseFont = true; + this.gvMx1fmaterialtype.FieldName = "fmaterialtype"; + this.gvMx1fmaterialtype.Caption = "瀛愰」绫诲瀷 "; + this.gvMx1fmaterialtype.Tag = "query_a.FMATERIALTYPE"; + this.gvMx1fmaterialtype.MinWidth = 50; + this.gvMx1fmaterialtype.Visible = true; + this.gvMx1fmaterialtype.Width = 94; + this.gvMx1fmaterialtype.OptionsColumn.AllowEdit = true; + this.gvMx1fmaterialtype.VisibleIndex = 0; + + this.gvMx1erpXsddh.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1erpXsddh.AppearanceCell.Options.UseFont = true; + this.gvMx1erpXsddh.FieldName = "erpXsddh"; + this.gvMx1erpXsddh.Caption = "閿�鍞鍗曞彿 "; + this.gvMx1erpXsddh.Tag = "query_a.ERP_XSDDH"; + this.gvMx1erpXsddh.MinWidth = 50; + this.gvMx1erpXsddh.Visible = true; + this.gvMx1erpXsddh.Width = 94; + this.gvMx1erpXsddh.OptionsColumn.AllowEdit = true; + this.gvMx1erpXsddh.VisibleIndex = 0; + + this.gvMx1freplacegroup.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1freplacegroup.AppearanceCell.Options.UseFont = true; + this.gvMx1freplacegroup.FieldName = "freplacegroup"; + this.gvMx1freplacegroup.Caption = "椤规鍙� "; + this.gvMx1freplacegroup.Tag = "query_a.FREPLACEGROUP"; + this.gvMx1freplacegroup.MinWidth = 50; + this.gvMx1freplacegroup.Visible = true; + this.gvMx1freplacegroup.Width = 94; + this.gvMx1freplacegroup.OptionsColumn.AllowEdit = true; + this.gvMx1freplacegroup.VisibleIndex = 0; + + this.gvMx1fownertypeid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1fownertypeid.AppearanceCell.Options.UseFont = true; + this.gvMx1fownertypeid.FieldName = "fownertypeid"; + this.gvMx1fownertypeid.Caption = "璐т富绫诲瀷 "; + this.gvMx1fownertypeid.Tag = "query_a.FOWNERTYPEID"; + this.gvMx1fownertypeid.MinWidth = 50; + this.gvMx1fownertypeid.Visible = true; + this.gvMx1fownertypeid.Width = 94; + this.gvMx1fownertypeid.OptionsColumn.AllowEdit = true; + this.gvMx1fownertypeid.VisibleIndex = 0; + + this.gvMx1fsaleorderno.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1fsaleorderno.AppearanceCell.Options.UseFont = true; + this.gvMx1fsaleorderno.FieldName = "fsaleorderno"; + this.gvMx1fsaleorderno.Caption = "閿�鍞鍗� "; + this.gvMx1fsaleorderno.Tag = "query_a.FSALEORDERNO"; + this.gvMx1fsaleorderno.MinWidth = 50; + this.gvMx1fsaleorderno.Visible = true; + this.gvMx1fsaleorderno.Width = 94; + this.gvMx1fsaleorderno.OptionsColumn.AllowEdit = true; + this.gvMx1fsaleorderno.VisibleIndex = 0; + + this.gvMx1parentItemName.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1parentItemName.AppearanceCell.Options.UseFont = true; + this.gvMx1parentItemName.FieldName = "parentItemName"; + this.gvMx1parentItemName.Caption = "鐖堕」鐗╂枡鍚嶇О "; + this.gvMx1parentItemName.Tag = "query_a.PARENT_ITEM_NAME"; + this.gvMx1parentItemName.MinWidth = 50; + this.gvMx1parentItemName.Visible = true; + this.gvMx1parentItemName.Width = 94; + this.gvMx1parentItemName.OptionsColumn.AllowEdit = true; + this.gvMx1parentItemName.VisibleIndex = 0; + + this.gvMx1mainProductQty.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1mainProductQty.AppearanceCell.Options.UseFont = true; + this.gvMx1mainProductQty.FieldName = "mainProductQty"; + this.gvMx1mainProductQty.Caption = "涓讳骇鍝佹暟閲� "; + this.gvMx1mainProductQty.Tag = "query_a.MAIN_PRODUCT_QTY"; + this.gvMx1mainProductQty.MinWidth = 50; + this.gvMx1mainProductQty.Visible = true; + this.gvMx1mainProductQty.Width = 94; + this.gvMx1mainProductQty.OptionsColumn.AllowEdit = true; + this.gvMx1mainProductQty.VisibleIndex = 0; + + this.gvMx1mainProduct.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1mainProduct.AppearanceCell.Options.UseFont = true; + this.gvMx1mainProduct.FieldName = "mainProduct"; + this.gvMx1mainProduct.Caption = "涓讳骇鍝� "; + this.gvMx1mainProduct.Tag = "query_a.MAIN_PRODUCT"; + this.gvMx1mainProduct.MinWidth = 50; + this.gvMx1mainProduct.Visible = true; + this.gvMx1mainProduct.Width = 94; + this.gvMx1mainProduct.OptionsColumn.AllowEdit = true; + this.gvMx1mainProduct.VisibleIndex = 0; + + this.gvMx1packingListNumber.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1packingListNumber.AppearanceCell.Options.UseFont = true; + this.gvMx1packingListNumber.FieldName = "packingListNumber"; + this.gvMx1packingListNumber.Caption = "鍖呰鍗曞彿 "; + this.gvMx1packingListNumber.Tag = "query_a.PACKING_LIST_NUMBER"; + this.gvMx1packingListNumber.MinWidth = 50; + this.gvMx1packingListNumber.Visible = true; + this.gvMx1packingListNumber.Width = 94; + this.gvMx1packingListNumber.OptionsColumn.AllowEdit = true; + this.gvMx1packingListNumber.VisibleIndex = 0; + + this.gvMx1customerItemNumber.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1customerItemNumber.AppearanceCell.Options.UseFont = true; + this.gvMx1customerItemNumber.FieldName = "customerItemNumber"; + this.gvMx1customerItemNumber.Caption = "瀹㈡埛璐у彿 "; + this.gvMx1customerItemNumber.Tag = "query_a.CUSTOMER_ITEM_NUMBER"; + this.gvMx1customerItemNumber.MinWidth = 50; + this.gvMx1customerItemNumber.Visible = true; + this.gvMx1customerItemNumber.Width = 94; + this.gvMx1customerItemNumber.OptionsColumn.AllowEdit = true; + this.gvMx1customerItemNumber.VisibleIndex = 0; + + this.gvMx1scraprate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1scraprate.AppearanceCell.Options.UseFont = true; + this.gvMx1scraprate.FieldName = "scraprate"; + this.gvMx1scraprate.Caption = "鍙樺姩鎹熻�楃巼 "; + this.gvMx1scraprate.Tag = "query_a.SCRAPRATE"; + this.gvMx1scraprate.MinWidth = 50; + this.gvMx1scraprate.Visible = true; + this.gvMx1scraprate.Width = 94; + this.gvMx1scraprate.OptionsColumn.AllowEdit = true; + this.gvMx1scraprate.VisibleIndex = 0; + + this.gvMx1scrapqty.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1scrapqty.AppearanceCell.Options.UseFont = true; + this.gvMx1scrapqty.FieldName = "scrapqty"; + this.gvMx1scrapqty.Caption = "鍥哄畾鎹熻�� "; + this.gvMx1scrapqty.Tag = "query_a.SCRAPQTY"; + this.gvMx1scrapqty.MinWidth = 50; + this.gvMx1scrapqty.Visible = true; + this.gvMx1scrapqty.Width = 94; + this.gvMx1scrapqty.OptionsColumn.AllowEdit = true; + this.gvMx1scrapqty.VisibleIndex = 0; + + this.gvMx1denominator.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1denominator.AppearanceCell.Options.UseFont = true; + this.gvMx1denominator.FieldName = "denominator"; + this.gvMx1denominator.Caption = "鍒嗘瘝 "; + this.gvMx1denominator.Tag = "query_a.DENOMINATOR"; + this.gvMx1denominator.MinWidth = 50; + this.gvMx1denominator.Visible = true; + this.gvMx1denominator.Width = 94; + this.gvMx1denominator.OptionsColumn.AllowEdit = true; + this.gvMx1denominator.VisibleIndex = 0; + + this.gvMx1numerator.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1numerator.AppearanceCell.Options.UseFont = true; + this.gvMx1numerator.FieldName = "numerator"; + this.gvMx1numerator.Caption = "鍒嗗瓙 "; + this.gvMx1numerator.Tag = "query_a.NUMERATOR"; + this.gvMx1numerator.MinWidth = 50; + this.gvMx1numerator.Visible = true; + this.gvMx1numerator.Width = 94; + this.gvMx1numerator.OptionsColumn.AllowEdit = true; + this.gvMx1numerator.VisibleIndex = 0; + + this.gvMx1supplyType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1supplyType.AppearanceCell.Options.UseFont = true; + this.gvMx1supplyType.FieldName = "supplyType"; + this.gvMx1supplyType.Caption = "渚涘簲绫诲瀷(C閲囪喘 Z鑷埗 W濮斿) "; + this.gvMx1supplyType.Tag = "query_a.SUPPLY_TYPE"; + this.gvMx1supplyType.MinWidth = 50; + this.gvMx1supplyType.Visible = true; + this.gvMx1supplyType.Width = 94; + this.gvMx1supplyType.OptionsColumn.AllowEdit = true; + this.gvMx1supplyType.VisibleIndex = 0; + + this.gvMx1issueType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1issueType.AppearanceCell.Options.UseFont = true; + this.gvMx1issueType.FieldName = "issueType"; + this.gvMx1issueType.Caption = "鍙戞枡鏂瑰紡 "; + this.gvMx1issueType.Tag = "query_a.ISSUE_TYPE"; + this.gvMx1issueType.MinWidth = 50; + this.gvMx1issueType.Visible = true; + this.gvMx1issueType.Width = 94; + this.gvMx1issueType.OptionsColumn.AllowEdit = true; + this.gvMx1issueType.VisibleIndex = 0; + + this.gvMx1depotCode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1depotCode.AppearanceCell.Options.UseFont = true; + this.gvMx1depotCode.FieldName = "depotCode"; + this.gvMx1depotCode.Caption = "浠撳簱 "; + this.gvMx1depotCode.Tag = "query_a.DEPOT_CODE"; + this.gvMx1depotCode.MinWidth = 50; + this.gvMx1depotCode.Visible = true; + this.gvMx1depotCode.Width = 94; + this.gvMx1depotCode.OptionsColumn.AllowEdit = true; + this.gvMx1depotCode.VisibleIndex = 0; + + this.gvMx1lot.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1lot.AppearanceCell.Options.UseFont = true; + this.gvMx1lot.FieldName = "lot"; + this.gvMx1lot.Caption = "鎵瑰彿 "; + this.gvMx1lot.Tag = "query_a.LOT"; + this.gvMx1lot.MinWidth = 50; + this.gvMx1lot.Visible = true; + this.gvMx1lot.Width = 94; + this.gvMx1lot.OptionsColumn.AllowEdit = true; + this.gvMx1lot.VisibleIndex = 0; + + this.gvMx1mtono.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1mtono.AppearanceCell.Options.UseFont = true; + this.gvMx1mtono.FieldName = "mtono"; + this.gvMx1mtono.Caption = "璁″垝璺熻釜鍙� "; + this.gvMx1mtono.Tag = "query_a.MTONO"; + this.gvMx1mtono.MinWidth = 50; + this.gvMx1mtono.Visible = true; + this.gvMx1mtono.Width = 94; + this.gvMx1mtono.OptionsColumn.AllowEdit = true; + this.gvMx1mtono.VisibleIndex = 0; + + this.gvMx1ownerId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1ownerId.AppearanceCell.Options.UseFont = true; + this.gvMx1ownerId.FieldName = "ownerId"; + this.gvMx1ownerId.Caption = "璐т富 "; + this.gvMx1ownerId.Tag = "query_a.OWNER_ID"; + this.gvMx1ownerId.MinWidth = 50; + this.gvMx1ownerId.Visible = true; + this.gvMx1ownerId.Width = 94; + this.gvMx1ownerId.OptionsColumn.AllowEdit = true; + this.gvMx1ownerId.VisibleIndex = 0; + + this.gvMx1supplyOrganization.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1supplyOrganization.AppearanceCell.Options.UseFont = true; + this.gvMx1supplyOrganization.FieldName = "supplyOrganization"; + this.gvMx1supplyOrganization.Caption = "渚涘簲缁勭粐 "; + this.gvMx1supplyOrganization.Tag = "query_a.SUPPLY_ORGANIZATION"; + this.gvMx1supplyOrganization.MinWidth = 50; + this.gvMx1supplyOrganization.Visible = true; + this.gvMx1supplyOrganization.Width = 94; + this.gvMx1supplyOrganization.OptionsColumn.AllowEdit = true; + this.gvMx1supplyOrganization.VisibleIndex = 0; + + this.gvMx1issuingOrganization.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1issuingOrganization.AppearanceCell.Options.UseFont = true; + this.gvMx1issuingOrganization.FieldName = "issuingOrganization"; + this.gvMx1issuingOrganization.Caption = "鍙戞枡缁勭粐 "; + this.gvMx1issuingOrganization.Tag = "query_a.ISSUING_ORGANIZATION"; + this.gvMx1issuingOrganization.MinWidth = 50; + this.gvMx1issuingOrganization.Visible = true; + this.gvMx1issuingOrganization.Width = 94; + this.gvMx1issuingOrganization.OptionsColumn.AllowEdit = true; + this.gvMx1issuingOrganization.VisibleIndex = 0; + + this.gvMx1positionNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1positionNo.AppearanceCell.Options.UseFont = true; + this.gvMx1positionNo.FieldName = "positionNo"; + this.gvMx1positionNo.Caption = "浣嶇疆鍙� "; + this.gvMx1positionNo.Tag = "query_a.POSITION_NO"; + this.gvMx1positionNo.MinWidth = 50; + this.gvMx1positionNo.Visible = true; + this.gvMx1positionNo.Width = 94; + this.gvMx1positionNo.OptionsColumn.AllowEdit = true; + this.gvMx1positionNo.VisibleIndex = 0; + + this.gvMx1eid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1eid.AppearanceCell.Options.UseFont = true; + this.gvMx1eid.FieldName = "eid"; + this.gvMx1eid.Caption = "ERP澶碔D "; + this.gvMx1eid.Tag = "query_a.EID"; + this.gvMx1eid.MinWidth = 50; + this.gvMx1eid.Visible = true; + this.gvMx1eid.Width = 94; + this.gvMx1eid.OptionsColumn.AllowEdit = true; + this.gvMx1eid.VisibleIndex = 0; + + this.gvMx1pid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1pid.AppearanceCell.Options.UseFont = true; + this.gvMx1pid.FieldName = "pid"; + this.gvMx1pid.Caption = "PID "; + this.gvMx1pid.Tag = "query_a.PID"; + this.gvMx1pid.MinWidth = 50; + this.gvMx1pid.Visible = true; + this.gvMx1pid.Width = 94; + this.gvMx1pid.OptionsColumn.AllowEdit = true; + this.gvMx1pid.VisibleIndex = 0; + + this.gvMx1cab014.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab014.AppearanceCell.Options.UseFont = true; + this.gvMx1cab014.FieldName = "cab014"; + this.gvMx1cab014.Caption = "鏄惁鏇挎枡 "; + this.gvMx1cab014.Tag = "query_a.CAB014"; + this.gvMx1cab014.MinWidth = 50; + this.gvMx1cab014.Visible = true; + this.gvMx1cab014.Width = 94; + this.gvMx1cab014.OptionsColumn.AllowEdit = true; + this.gvMx1cab014.VisibleIndex = 0; + + this.gvMx1cab012.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab012.AppearanceCell.Options.UseFont = true; + this.gvMx1cab012.FieldName = "cab012"; + this.gvMx1cab012.Caption = "缁勬垚鐢ㄩ噺 "; + this.gvMx1cab012.Tag = "query_a.CAB012"; + this.gvMx1cab012.MinWidth = 50; + this.gvMx1cab012.Visible = true; + this.gvMx1cab012.Width = 94; + this.gvMx1cab012.OptionsColumn.AllowEdit = true; + this.gvMx1cab012.VisibleIndex = 0; + + this.gvMx1cab009.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab009.AppearanceCell.Options.UseFont = true; + this.gvMx1cab009.FieldName = "cab009"; + this.gvMx1cab009.Caption = "鍗曚綅 "; + this.gvMx1cab009.Tag = "query_a.CAB009"; + this.gvMx1cab009.MinWidth = 50; + this.gvMx1cab009.Visible = true; + this.gvMx1cab009.Width = 94; + this.gvMx1cab009.OptionsColumn.AllowEdit = true; + this.gvMx1cab009.VisibleIndex = 0; + + this.gvMx1cab008.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab008.AppearanceCell.Options.UseFont = true; + this.gvMx1cab008.FieldName = "cab008"; + this.gvMx1cab008.Caption = "宸ヨ壓 "; + this.gvMx1cab008.Tag = "query_a.CAB008"; + this.gvMx1cab008.MinWidth = 50; + this.gvMx1cab008.Visible = true; + this.gvMx1cab008.Width = 94; + this.gvMx1cab008.OptionsColumn.AllowEdit = true; + this.gvMx1cab008.VisibleIndex = 0; + + this.gvMx1cab007.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab007.AppearanceCell.Options.UseFont = true; + this.gvMx1cab007.FieldName = "cab007"; + this.gvMx1cab007.Caption = "宸查鐢ㄩ噺 "; + this.gvMx1cab007.Tag = "query_a.CAB007"; + this.gvMx1cab007.MinWidth = 50; + this.gvMx1cab007.Visible = true; + this.gvMx1cab007.Width = 94; + this.gvMx1cab007.OptionsColumn.AllowEdit = true; + this.gvMx1cab007.VisibleIndex = 0; + + this.gvMx1cab006.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab006.AppearanceCell.Options.UseFont = true; + this.gvMx1cab006.FieldName = "cab006"; + this.gvMx1cab006.Caption = "闇�棰嗙敤閲� "; + this.gvMx1cab006.Tag = "query_a.CAB006"; + this.gvMx1cab006.MinWidth = 50; + this.gvMx1cab006.Visible = true; + this.gvMx1cab006.Width = 94; + this.gvMx1cab006.OptionsColumn.AllowEdit = true; + this.gvMx1cab006.VisibleIndex = 0; + + this.gvMx1cab003.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab003.AppearanceCell.Options.UseFont = true; + this.gvMx1cab003.FieldName = "cab003"; + this.gvMx1cab003.Caption = "鏉愭枡缂栫爜 "; + this.gvMx1cab003.Tag = "query_a.CAB003"; + this.gvMx1cab003.MinWidth = 50; + this.gvMx1cab003.Visible = true; + this.gvMx1cab003.Width = 94; + this.gvMx1cab003.OptionsColumn.AllowEdit = true; + this.gvMx1cab003.VisibleIndex = 0; + + this.gvMx1cab002.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab002.AppearanceCell.Options.UseFont = true; + this.gvMx1cab002.FieldName = "cab002"; + this.gvMx1cab002.Caption = "搴忓彿 "; + this.gvMx1cab002.Tag = "query_a.CAB002"; + this.gvMx1cab002.MinWidth = 50; + this.gvMx1cab002.Visible = true; + this.gvMx1cab002.Width = 94; + this.gvMx1cab002.OptionsColumn.AllowEdit = true; + this.gvMx1cab002.VisibleIndex = 0; + + this.gvMx1cab001.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1cab001.AppearanceCell.Options.UseFont = true; + this.gvMx1cab001.FieldName = "cab001"; + this.gvMx1cab001.Caption = "宸ュ崟鍗曞彿 "; + this.gvMx1cab001.Tag = "query_a.CAB001"; + this.gvMx1cab001.MinWidth = 50; + this.gvMx1cab001.Visible = true; + this.gvMx1cab001.Width = 94; + this.gvMx1cab001.OptionsColumn.AllowEdit = true; + this.gvMx1cab001.VisibleIndex = 0; + + this.gvMx1erpid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1erpid.AppearanceCell.Options.UseFont = true; + this.gvMx1erpid.FieldName = "erpid"; + this.gvMx1erpid.Caption = "ERPID "; + this.gvMx1erpid.Tag = "query_a.ERPID"; + this.gvMx1erpid.MinWidth = 50; + this.gvMx1erpid.Visible = true; + this.gvMx1erpid.Width = 94; + this.gvMx1erpid.OptionsColumn.AllowEdit = true; + this.gvMx1erpid.VisibleIndex = 0; + + this.gvMx1guid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gvMx1guid.AppearanceCell.Options.UseFont = true; + this.gvMx1guid.FieldName = "guid"; + this.gvMx1guid.Caption = "guid "; + this.gvMx1guid.Tag = "query_a.guid"; + this.gvMx1guid.MinWidth = 50; + this.gvMx1guid.Visible = true; + this.gvMx1guid.Width = 94; + this.gvMx1guid.OptionsColumn.AllowEdit = true; + this.gvMx1guid.VisibleIndex = 0; + + this.tabMxPage1.Controls.Add(this.gcMx1); this.tabMxPage1.Name = "tabMxPage1"; + this.tabMxPage1.Size = new System.Drawing.Size(1186, 112); + this.tabMxPage1.Text = "鏄庣粏1"; + // + //gcMx1 + // + this.gcMx1.Dock = System.Windows.Forms.DockStyle.Fill; + this.gcMx1.Location = new System.Drawing.Point(0, 0); + this.gcMx1.MainView = this.gvMx1; + this.gcMx1.Name = "gcMx1"; + this.gcMx1.Size = new System.Drawing.Size(1124, 215); + this.gcMx1.TabIndex = 0; + this.gcMx1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvMx1 }); + // + //gvMx1 + // + this.gvMx1.GridControl = this.gcMx1; + this.gvMx1.Name = "gvMx1"; + this.gvMx1.OptionsFind.ShowSearchNavButtons = false; + this.gvMx1.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; + this.gvMx1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True; + this.gvMx1.OptionsView.ShowGroupPanel = false; + this.gvMx1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gvMx1guid, this.gvMx1erpid, this.gvMx1cab001, this.gvMx1cab002, this.gvMx1cab003, this.gvMx1cab006, this.gvMx1cab007, this.gvMx1cab008, this.gvMx1cab009, this.gvMx1cab012, this.gvMx1cab014, this.gvMx1pid, this.gvMx1eid, this.gvMx1positionNo, this.gvMx1issuingOrganization, this.gvMx1supplyOrganization, this.gvMx1ownerId, this.gvMx1mtono, this.gvMx1lot, this.gvMx1depotCode, this.gvMx1issueType, this.gvMx1supplyType, this.gvMx1numerator, this.gvMx1denominator, this.gvMx1scrapqty, this.gvMx1scraprate, this.gvMx1customerItemNumber, this.gvMx1packingListNumber, this.gvMx1mainProduct, this.gvMx1mainProductQty, this.gvMx1parentItemName, this.gvMx1fsaleorderno, this.gvMx1fownertypeid, this.gvMx1freplacegroup, this.gvMx1erpXsddh, this.gvMx1fmaterialtype, this.gvMx1funitid, this.gvMx1mustQty, this.gvMx1useRate, this.gvMx1materialType }); + // + //lb_btbz + // + this.lb_btbz.Location = new System.Drawing.Point(770, 532); + this.lb_btbz.Name = "lb_btbz"; + this.lb_btbz.Size = new System.Drawing.Size(150, 21); + this.lb_btbz.TabIndex = 856; + this.lb_btbz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_btbz.Text = "澶囨敞锛堣〃浣擄級 "; + // + //txt_btbz + // + this.txt_btbz.Location = new System.Drawing.Point(830, 532); + this.txt_btbz.Name = "txt_btbz"; + this.txt_btbz.Size = new System.Drawing.Size(150, 21); + this.txt_btbz.TabIndex = 856; + this.txt_btbz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_btbz + // + this.gv_btbz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_btbz.AppearanceCell.Options.UseFont = true; + this.gv_btbz.FieldName = "btbz"; + this.gv_btbz.Caption = "澶囨敞锛堣〃浣擄級 "; + this.gv_btbz.Tag = "query_a.Btbz"; + this.gv_btbz.MinWidth = 50; + this.gv_btbz.Visible = true; + this.gv_btbz.Width = 94; + this.gv_btbz.OptionsColumn.AllowEdit = false; + this.gv_btbz.VisibleIndex = 0; + + // + //lb_fpurorderentryseq + // + this.lb_fpurorderentryseq.Location = new System.Drawing.Point(520, 532); + this.lb_fpurorderentryseq.Name = "lb_fpurorderentryseq"; + this.lb_fpurorderentryseq.Size = new System.Drawing.Size(150, 21); + this.lb_fpurorderentryseq.TabIndex = 837; + this.lb_fpurorderentryseq.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_fpurorderentryseq.Text = "閲囪喘璁㈠崟琛屽彿 "; + // + //txt_fpurorderentryseq + // + this.txt_fpurorderentryseq.Location = new System.Drawing.Point(580, 532); + this.txt_fpurorderentryseq.Name = "txt_fpurorderentryseq"; + this.txt_fpurorderentryseq.Size = new System.Drawing.Size(150, 21); + this.txt_fpurorderentryseq.TabIndex = 837; + this.txt_fpurorderentryseq.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_fpurorderentryseq + // + this.gv_fpurorderentryseq.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_fpurorderentryseq.AppearanceCell.Options.UseFont = true; + this.gv_fpurorderentryseq.FieldName = "fpurorderentryseq"; + this.gv_fpurorderentryseq.Caption = "閲囪喘璁㈠崟琛屽彿 "; + this.gv_fpurorderentryseq.Tag = "query_a.FPURORDERENTRYSEQ"; + this.gv_fpurorderentryseq.MinWidth = 50; + this.gv_fpurorderentryseq.Visible = true; + this.gv_fpurorderentryseq.Width = 94; + this.gv_fpurorderentryseq.OptionsColumn.AllowEdit = false; + this.gv_fpurorderentryseq.VisibleIndex = 0; + + // + //lb_fpurorderno + // + this.lb_fpurorderno.Location = new System.Drawing.Point(270, 532); + this.lb_fpurorderno.Name = "lb_fpurorderno"; + this.lb_fpurorderno.Size = new System.Drawing.Size(150, 21); + this.lb_fpurorderno.TabIndex = 819; + this.lb_fpurorderno.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_fpurorderno.Text = "閲囪喘璁㈠崟鍙� "; + // + //txt_fpurorderno + // + this.txt_fpurorderno.Location = new System.Drawing.Point(330, 532); + this.txt_fpurorderno.Name = "txt_fpurorderno"; + this.txt_fpurorderno.Size = new System.Drawing.Size(150, 21); + this.txt_fpurorderno.TabIndex = 819; + this.txt_fpurorderno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_fpurorderno + // + this.gv_fpurorderno.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_fpurorderno.AppearanceCell.Options.UseFont = true; + this.gv_fpurorderno.FieldName = "fpurorderno"; + this.gv_fpurorderno.Caption = "閲囪喘璁㈠崟鍙� "; + this.gv_fpurorderno.Tag = "query_a.FPURORDERNO"; + this.gv_fpurorderno.MinWidth = 50; + this.gv_fpurorderno.Visible = true; + this.gv_fpurorderno.Width = 94; + this.gv_fpurorderno.OptionsColumn.AllowEdit = false; + this.gv_fpurorderno.VisibleIndex = 0; + + // + //lb_caa025 + // + this.lb_caa025.Location = new System.Drawing.Point(20, 532); + this.lb_caa025.Name = "lb_caa025"; + this.lb_caa025.Size = new System.Drawing.Size(150, 21); + this.lb_caa025.TabIndex = 802; + this.lb_caa025.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa025.Text = "鏄惁鏂板缓 "; + // + //txt_caa025 + // + this.txt_caa025.Location = new System.Drawing.Point(80, 532); + this.txt_caa025.Name = "txt_caa025"; + this.txt_caa025.Size = new System.Drawing.Size(150, 21); + this.txt_caa025.TabIndex = 802; + this.txt_caa025.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa025 + // + this.gv_caa025.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa025.AppearanceCell.Options.UseFont = true; + this.gv_caa025.FieldName = "caa025"; + this.gv_caa025.Caption = "鏄惁鏂板缓 "; + this.gv_caa025.Tag = "query_a.CAA025"; + this.gv_caa025.MinWidth = 50; + this.gv_caa025.Visible = true; + this.gv_caa025.Width = 94; + this.gv_caa025.OptionsColumn.AllowEdit = false; + this.gv_caa025.VisibleIndex = 0; + + // + //lb_erpBzds + // + this.lb_erpBzds.Location = new System.Drawing.Point(770, 500); + this.lb_erpBzds.Name = "lb_erpBzds"; + this.lb_erpBzds.Size = new System.Drawing.Size(150, 21); + this.lb_erpBzds.TabIndex = 786; + this.lb_erpBzds.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpBzds.Text = "鏄惁鎸夋 "; + // + //txt_erpBzds + // + this.txt_erpBzds.Location = new System.Drawing.Point(830, 500); + this.txt_erpBzds.Name = "txt_erpBzds"; + this.txt_erpBzds.Size = new System.Drawing.Size(150, 21); + this.txt_erpBzds.TabIndex = 786; + this.txt_erpBzds.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpBzds + // + this.gv_erpBzds.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpBzds.AppearanceCell.Options.UseFont = true; + this.gv_erpBzds.FieldName = "erpBzds"; + this.gv_erpBzds.Caption = "鏄惁鎸夋 "; + this.gv_erpBzds.Tag = "query_a.ERP_BZDS"; + this.gv_erpBzds.MinWidth = 50; + this.gv_erpBzds.Visible = true; + this.gv_erpBzds.Width = 94; + this.gv_erpBzds.OptionsColumn.AllowEdit = false; + this.gv_erpBzds.VisibleIndex = 0; + + // + //lb_erpJjds + // + this.lb_erpJjds.Location = new System.Drawing.Point(520, 500); + this.lb_erpJjds.Name = "lb_erpJjds"; + this.lb_erpJjds.Size = new System.Drawing.Size(150, 21); + this.lb_erpJjds.TabIndex = 768; + this.lb_erpJjds.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpJjds.Text = "鏄惁瀵勫敭 "; + // + //txt_erpJjds + // + this.txt_erpJjds.Location = new System.Drawing.Point(580, 500); + this.txt_erpJjds.Name = "txt_erpJjds"; + this.txt_erpJjds.Size = new System.Drawing.Size(150, 21); + this.txt_erpJjds.TabIndex = 768; + this.txt_erpJjds.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpJjds + // + this.gv_erpJjds.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpJjds.AppearanceCell.Options.UseFont = true; + this.gv_erpJjds.FieldName = "erpJjds"; + this.gv_erpJjds.Caption = "鏄惁瀵勫敭 "; + this.gv_erpJjds.Tag = "query_a.ERP_JJDS"; + this.gv_erpJjds.MinWidth = 50; + this.gv_erpJjds.Visible = true; + this.gv_erpJjds.Width = 94; + this.gv_erpJjds.OptionsColumn.AllowEdit = false; + this.gv_erpJjds.VisibleIndex = 0; + + // + //lb_erpRkhz + // + this.lb_erpRkhz.Location = new System.Drawing.Point(270, 500); + this.lb_erpRkhz.Name = "lb_erpRkhz"; + this.lb_erpRkhz.Size = new System.Drawing.Size(150, 21); + this.lb_erpRkhz.TabIndex = 751; + this.lb_erpRkhz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpRkhz.Text = "鏄惁鎹㈣揣 "; + // + //txt_erpRkhz + // + this.txt_erpRkhz.Location = new System.Drawing.Point(330, 500); + this.txt_erpRkhz.Name = "txt_erpRkhz"; + this.txt_erpRkhz.Size = new System.Drawing.Size(150, 21); + this.txt_erpRkhz.TabIndex = 751; + this.txt_erpRkhz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpRkhz + // + this.gv_erpRkhz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpRkhz.AppearanceCell.Options.UseFont = true; + this.gv_erpRkhz.FieldName = "erpRkhz"; + this.gv_erpRkhz.Caption = "鏄惁鎹㈣揣 "; + this.gv_erpRkhz.Tag = "query_a.ERP_RKHZ"; + this.gv_erpRkhz.MinWidth = 50; + this.gv_erpRkhz.Visible = true; + this.gv_erpRkhz.Width = 94; + this.gv_erpRkhz.OptionsColumn.AllowEdit = false; + this.gv_erpRkhz.VisibleIndex = 0; + + // + //lb_erpRkzz + // + this.lb_erpRkzz.Location = new System.Drawing.Point(20, 500); + this.lb_erpRkzz.Name = "lb_erpRkzz"; + this.lb_erpRkzz.Size = new System.Drawing.Size(150, 21); + this.lb_erpRkzz.TabIndex = 735; + this.lb_erpRkzz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpRkzz.Text = "鏄惁閫�搴� "; + // + //txt_erpRkzz + // + this.txt_erpRkzz.Location = new System.Drawing.Point(80, 500); + this.txt_erpRkzz.Name = "txt_erpRkzz"; + this.txt_erpRkzz.Size = new System.Drawing.Size(150, 21); + this.txt_erpRkzz.TabIndex = 735; + this.txt_erpRkzz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpRkzz + // + this.gv_erpRkzz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpRkzz.AppearanceCell.Options.UseFont = true; + this.gv_erpRkzz.FieldName = "erpRkzz"; + this.gv_erpRkzz.Caption = "鏄惁閫�搴� "; + this.gv_erpRkzz.Tag = "query_a.ERP_RKZZ"; + this.gv_erpRkzz.MinWidth = 50; + this.gv_erpRkzz.Visible = true; + this.gv_erpRkzz.Width = 94; + this.gv_erpRkzz.OptionsColumn.AllowEdit = false; + this.gv_erpRkzz.VisibleIndex = 0; + + // + //lb_erpSlzz + // + this.lb_erpSlzz.Location = new System.Drawing.Point(770, 468); + this.lb_erpSlzz.Name = "lb_erpSlzz"; + this.lb_erpSlzz.Size = new System.Drawing.Size(150, 21); + this.lb_erpSlzz.TabIndex = 720; + this.lb_erpSlzz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpSlzz.Text = "鏄惁鍏ュ簱 "; + // + //txt_erpSlzz + // + this.txt_erpSlzz.Location = new System.Drawing.Point(830, 468); + this.txt_erpSlzz.Name = "txt_erpSlzz"; + this.txt_erpSlzz.Size = new System.Drawing.Size(150, 21); + this.txt_erpSlzz.TabIndex = 720; + this.txt_erpSlzz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpSlzz + // + this.gv_erpSlzz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpSlzz.AppearanceCell.Options.UseFont = true; + this.gv_erpSlzz.FieldName = "erpSlzz"; + this.gv_erpSlzz.Caption = "鏄惁鍏ュ簱 "; + this.gv_erpSlzz.Tag = "query_a.ERP_SLZZ"; + this.gv_erpSlzz.MinWidth = 50; + this.gv_erpSlzz.Visible = true; + this.gv_erpSlzz.Width = 94; + this.gv_erpSlzz.OptionsColumn.AllowEdit = false; + this.gv_erpSlzz.VisibleIndex = 0; + + // + //lb_erpFlzz + // + this.lb_erpFlzz.Location = new System.Drawing.Point(520, 468); + this.lb_erpFlzz.Name = "lb_erpFlzz"; + this.lb_erpFlzz.Size = new System.Drawing.Size(150, 21); + this.lb_erpFlzz.TabIndex = 703; + this.lb_erpFlzz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpFlzz.Text = "ERP_FLZZ "; + // + //txt_erpFlzz + // + this.txt_erpFlzz.Location = new System.Drawing.Point(580, 468); + this.txt_erpFlzz.Name = "txt_erpFlzz"; + this.txt_erpFlzz.Size = new System.Drawing.Size(150, 21); + this.txt_erpFlzz.TabIndex = 703; + this.txt_erpFlzz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpFlzz + // + this.gv_erpFlzz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpFlzz.AppearanceCell.Options.UseFont = true; + this.gv_erpFlzz.FieldName = "erpFlzz"; + this.gv_erpFlzz.Caption = "ERP_FLZZ "; + this.gv_erpFlzz.Tag = "query_a.ERP_FLZZ"; + this.gv_erpFlzz.MinWidth = 50; + this.gv_erpFlzz.Visible = true; + this.gv_erpFlzz.Width = 94; + this.gv_erpFlzz.OptionsColumn.AllowEdit = false; + this.gv_erpFlzz.VisibleIndex = 0; + + // + //lb_erpGyzz + // + this.lb_erpGyzz.Location = new System.Drawing.Point(270, 468); + this.lb_erpGyzz.Name = "lb_erpGyzz"; + this.lb_erpGyzz.Size = new System.Drawing.Size(150, 21); + this.lb_erpGyzz.TabIndex = 687; + this.lb_erpGyzz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpGyzz.Text = "ERP_GYZZ "; + // + //txt_erpGyzz + // + this.txt_erpGyzz.Location = new System.Drawing.Point(330, 468); + this.txt_erpGyzz.Name = "txt_erpGyzz"; + this.txt_erpGyzz.Size = new System.Drawing.Size(150, 21); + this.txt_erpGyzz.TabIndex = 687; + this.txt_erpGyzz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpGyzz + // + this.gv_erpGyzz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpGyzz.AppearanceCell.Options.UseFont = true; + this.gv_erpGyzz.FieldName = "erpGyzz"; + this.gv_erpGyzz.Caption = "ERP_GYZZ "; + this.gv_erpGyzz.Tag = "query_a.ERP_GYZZ"; + this.gv_erpGyzz.MinWidth = 50; + this.gv_erpGyzz.Visible = true; + this.gv_erpGyzz.Width = 94; + this.gv_erpGyzz.OptionsColumn.AllowEdit = false; + this.gv_erpGyzz.VisibleIndex = 0; + + // + //lb_caa0111 + // + this.lb_caa0111.Location = new System.Drawing.Point(20, 468); + this.lb_caa0111.Name = "lb_caa0111"; + this.lb_caa0111.Size = new System.Drawing.Size(150, 21); + this.lb_caa0111.TabIndex = 672; + this.lb_caa0111.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa0111.Text = "CAA011_1 "; + // + //txt_caa0111 + // + this.txt_caa0111.Location = new System.Drawing.Point(80, 468); + this.txt_caa0111.Name = "txt_caa0111"; + this.txt_caa0111.Size = new System.Drawing.Size(150, 21); + this.txt_caa0111.TabIndex = 672; + this.txt_caa0111.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa0111 + // + this.gv_caa0111.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa0111.AppearanceCell.Options.UseFont = true; + this.gv_caa0111.FieldName = "caa0111"; + this.gv_caa0111.Caption = "CAA011_1 "; + this.gv_caa0111.Tag = "query_a.CAA011_1"; + this.gv_caa0111.MinWidth = 50; + this.gv_caa0111.Visible = true; + this.gv_caa0111.Width = 94; + this.gv_caa0111.OptionsColumn.AllowEdit = false; + this.gv_caa0111.VisibleIndex = 0; + + // + //lb_ypNum + // + this.lb_ypNum.Location = new System.Drawing.Point(770, 436); + this.lb_ypNum.Name = "lb_ypNum"; + this.lb_ypNum.Size = new System.Drawing.Size(150, 21); + this.lb_ypNum.TabIndex = 658; + this.lb_ypNum.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_ypNum.Text = "YP_NUM "; + // + //txt_ypNum + // + this.txt_ypNum.Location = new System.Drawing.Point(830, 436); + this.txt_ypNum.Name = "txt_ypNum"; + this.txt_ypNum.Size = new System.Drawing.Size(150, 21); + this.txt_ypNum.TabIndex = 658; + this.txt_ypNum.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_ypNum + // + this.gv_ypNum.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_ypNum.AppearanceCell.Options.UseFont = true; + this.gv_ypNum.FieldName = "ypNum"; + this.gv_ypNum.Caption = "YP_NUM "; + this.gv_ypNum.Tag = "query_a.YP_NUM"; + this.gv_ypNum.MinWidth = 50; + this.gv_ypNum.Visible = true; + this.gv_ypNum.Width = 94; + this.gv_ypNum.OptionsColumn.AllowEdit = false; + this.gv_ypNum.VisibleIndex = 0; + + // + //lb_jaTime + // + this.lb_jaTime.Location = new System.Drawing.Point(520, 436); + this.lb_jaTime.Name = "lb_jaTime"; + this.lb_jaTime.Size = new System.Drawing.Size(150, 21); + this.lb_jaTime.TabIndex = 642; + this.lb_jaTime.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_jaTime.Text = "JA_TIME "; + // + //txt_jaTime + // + this.txt_jaTime.Location = new System.Drawing.Point(580, 436); + this.txt_jaTime.Name = "txt_jaTime"; + this.txt_jaTime.Size = new System.Drawing.Size(150, 21); + this.txt_jaTime.TabIndex = 642; + this.txt_jaTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_jaTime + // + this.gv_jaTime.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_jaTime.AppearanceCell.Options.UseFont = true; + this.gv_jaTime.FieldName = "jaTime"; + this.gv_jaTime.Caption = "JA_TIME "; + this.gv_jaTime.Tag = "query_a.JA_TIME"; + this.gv_jaTime.MinWidth = 50; + this.gv_jaTime.Visible = true; + this.gv_jaTime.Width = 94; + this.gv_jaTime.OptionsColumn.AllowEdit = false; + this.gv_jaTime.VisibleIndex = 0; + + // + //lb_jaBs + // + this.lb_jaBs.Location = new System.Drawing.Point(270, 436); + this.lb_jaBs.Name = "lb_jaBs"; + this.lb_jaBs.Size = new System.Drawing.Size(150, 21); + this.lb_jaBs.TabIndex = 627; + this.lb_jaBs.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_jaBs.Text = "JA_BS "; + // + //txt_jaBs + // + this.txt_jaBs.Location = new System.Drawing.Point(330, 436); + this.txt_jaBs.Name = "txt_jaBs"; + this.txt_jaBs.Size = new System.Drawing.Size(150, 21); + this.txt_jaBs.TabIndex = 627; + this.txt_jaBs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_jaBs + // + this.gv_jaBs.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_jaBs.AppearanceCell.Options.UseFont = true; + this.gv_jaBs.FieldName = "jaBs"; + this.gv_jaBs.Caption = "JA_BS "; + this.gv_jaBs.Tag = "query_a.JA_BS"; + this.gv_jaBs.MinWidth = 50; + this.gv_jaBs.Visible = true; + this.gv_jaBs.Width = 94; + this.gv_jaBs.OptionsColumn.AllowEdit = false; + this.gv_jaBs.VisibleIndex = 0; + + // + //lb_type + // + this.lb_type.Location = new System.Drawing.Point(20, 436); + this.lb_type.Name = "lb_type"; + this.lb_type.Size = new System.Drawing.Size(150, 21); + this.lb_type.TabIndex = 613; + this.lb_type.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_type.Text = "TYPE "; + // + //txt_type + // + this.txt_type.Location = new System.Drawing.Point(80, 436); + this.txt_type.Name = "txt_type"; + this.txt_type.Size = new System.Drawing.Size(150, 21); + this.txt_type.TabIndex = 613; + this.txt_type.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_type + // + this.gv_type.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_type.AppearanceCell.Options.UseFont = true; + this.gv_type.FieldName = "type"; + this.gv_type.Caption = "TYPE "; + this.gv_type.Tag = "query_a.TYPE"; + this.gv_type.MinWidth = 50; + this.gv_type.Visible = true; + this.gv_type.Width = 94; + this.gv_type.OptionsColumn.AllowEdit = false; + this.gv_type.VisibleIndex = 0; + + // + //lb_customer + // + this.lb_customer.Location = new System.Drawing.Point(770, 404); + this.lb_customer.Name = "lb_customer"; + this.lb_customer.Size = new System.Drawing.Size(150, 21); + this.lb_customer.TabIndex = 600; + this.lb_customer.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_customer.Text = "CUSTOMER "; + // + //txt_customer + // + this.txt_customer.Location = new System.Drawing.Point(830, 404); + this.txt_customer.Name = "txt_customer"; + this.txt_customer.Size = new System.Drawing.Size(150, 21); + this.txt_customer.TabIndex = 600; + this.txt_customer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_customer + // + this.gv_customer.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_customer.AppearanceCell.Options.UseFont = true; + this.gv_customer.FieldName = "customer"; + this.gv_customer.Caption = "CUSTOMER "; + this.gv_customer.Tag = "query_a.CUSTOMER"; + this.gv_customer.MinWidth = 50; + this.gv_customer.Visible = true; + this.gv_customer.Width = 94; + this.gv_customer.OptionsColumn.AllowEdit = false; + this.gv_customer.VisibleIndex = 0; + + // + //lb_customerName + // + this.lb_customerName.Location = new System.Drawing.Point(520, 404); + this.lb_customerName.Name = "lb_customerName"; + this.lb_customerName.Size = new System.Drawing.Size(150, 21); + this.lb_customerName.TabIndex = 585; + this.lb_customerName.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_customerName.Text = "CUSTOMER_NAME "; + // + //txt_customerName + // + this.txt_customerName.Location = new System.Drawing.Point(580, 404); + this.txt_customerName.Name = "txt_customerName"; + this.txt_customerName.Size = new System.Drawing.Size(150, 21); + this.txt_customerName.TabIndex = 585; + this.txt_customerName.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_customerName + // + this.gv_customerName.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_customerName.AppearanceCell.Options.UseFont = true; + this.gv_customerName.FieldName = "customerName"; + this.gv_customerName.Caption = "CUSTOMER_NAME "; + this.gv_customerName.Tag = "query_a.CUSTOMER_NAME"; + this.gv_customerName.MinWidth = 50; + this.gv_customerName.Visible = true; + this.gv_customerName.Width = 94; + this.gv_customerName.OptionsColumn.AllowEdit = false; + this.gv_customerName.VisibleIndex = 0; + + // + //lb_packingListNumber + // + this.lb_packingListNumber.Location = new System.Drawing.Point(270, 404); + this.lb_packingListNumber.Name = "lb_packingListNumber"; + this.lb_packingListNumber.Size = new System.Drawing.Size(150, 21); + this.lb_packingListNumber.TabIndex = 571; + this.lb_packingListNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_packingListNumber.Text = "PACKING_LIST_NUMBER "; + // + //txt_packingListNumber + // + this.txt_packingListNumber.Location = new System.Drawing.Point(330, 404); + this.txt_packingListNumber.Name = "txt_packingListNumber"; + this.txt_packingListNumber.Size = new System.Drawing.Size(150, 21); + this.txt_packingListNumber.TabIndex = 571; + this.txt_packingListNumber.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_packingListNumber + // + this.gv_packingListNumber.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_packingListNumber.AppearanceCell.Options.UseFont = true; + this.gv_packingListNumber.FieldName = "packingListNumber"; + this.gv_packingListNumber.Caption = "PACKING_LIST_NUMBER "; + this.gv_packingListNumber.Tag = "query_a.PACKING_LIST_NUMBER"; + this.gv_packingListNumber.MinWidth = 50; + this.gv_packingListNumber.Visible = true; + this.gv_packingListNumber.Width = 94; + this.gv_packingListNumber.OptionsColumn.AllowEdit = false; + this.gv_packingListNumber.VisibleIndex = 0; + + // + //lb_customerItemNumber + // + this.lb_customerItemNumber.Location = new System.Drawing.Point(20, 404); + this.lb_customerItemNumber.Name = "lb_customerItemNumber"; + this.lb_customerItemNumber.Size = new System.Drawing.Size(150, 21); + this.lb_customerItemNumber.TabIndex = 558; + this.lb_customerItemNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_customerItemNumber.Text = "CUSTOMER_ITEM_NUMBER "; + // + //txt_customerItemNumber + // + this.txt_customerItemNumber.Location = new System.Drawing.Point(80, 404); + this.txt_customerItemNumber.Name = "txt_customerItemNumber"; + this.txt_customerItemNumber.Size = new System.Drawing.Size(150, 21); + this.txt_customerItemNumber.TabIndex = 558; + this.txt_customerItemNumber.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_customerItemNumber + // + this.gv_customerItemNumber.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_customerItemNumber.AppearanceCell.Options.UseFont = true; + this.gv_customerItemNumber.FieldName = "customerItemNumber"; + this.gv_customerItemNumber.Caption = "CUSTOMER_ITEM_NUMBER "; + this.gv_customerItemNumber.Tag = "query_a.CUSTOMER_ITEM_NUMBER"; + this.gv_customerItemNumber.MinWidth = 50; + this.gv_customerItemNumber.Visible = true; + this.gv_customerItemNumber.Width = 94; + this.gv_customerItemNumber.OptionsColumn.AllowEdit = false; + this.gv_customerItemNumber.VisibleIndex = 0; + + // + //lb_mainProductQty + // + this.lb_mainProductQty.Location = new System.Drawing.Point(770, 372); + this.lb_mainProductQty.Name = "lb_mainProductQty"; + this.lb_mainProductQty.Size = new System.Drawing.Size(150, 21); + this.lb_mainProductQty.TabIndex = 546; + this.lb_mainProductQty.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_mainProductQty.Text = "MAIN_PRODUCT_QTY "; + // + //txt_mainProductQty + // + this.txt_mainProductQty.Location = new System.Drawing.Point(830, 372); + this.txt_mainProductQty.Name = "txt_mainProductQty"; + this.txt_mainProductQty.Size = new System.Drawing.Size(150, 21); + this.txt_mainProductQty.TabIndex = 546; + this.txt_mainProductQty.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_mainProductQty + // + this.gv_mainProductQty.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_mainProductQty.AppearanceCell.Options.UseFont = true; + this.gv_mainProductQty.FieldName = "mainProductQty"; + this.gv_mainProductQty.Caption = "MAIN_PRODUCT_QTY "; + this.gv_mainProductQty.Tag = "query_a.MAIN_PRODUCT_QTY"; + this.gv_mainProductQty.MinWidth = 50; + this.gv_mainProductQty.Visible = true; + this.gv_mainProductQty.Width = 94; + this.gv_mainProductQty.OptionsColumn.AllowEdit = false; + this.gv_mainProductQty.VisibleIndex = 0; + + // + //lb_mainProductNo + // + this.lb_mainProductNo.Location = new System.Drawing.Point(520, 372); + this.lb_mainProductNo.Name = "lb_mainProductNo"; + this.lb_mainProductNo.Size = new System.Drawing.Size(150, 21); + this.lb_mainProductNo.TabIndex = 532; + this.lb_mainProductNo.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_mainProductNo.Text = "MAIN_PRODUCT_NO "; + // + //txt_mainProductNo + // + this.txt_mainProductNo.Location = new System.Drawing.Point(580, 372); + this.txt_mainProductNo.Name = "txt_mainProductNo"; + this.txt_mainProductNo.Size = new System.Drawing.Size(150, 21); + this.txt_mainProductNo.TabIndex = 532; + this.txt_mainProductNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_mainProductNo + // + this.gv_mainProductNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_mainProductNo.AppearanceCell.Options.UseFont = true; + this.gv_mainProductNo.FieldName = "mainProductNo"; + this.gv_mainProductNo.Caption = "MAIN_PRODUCT_NO "; + this.gv_mainProductNo.Tag = "query_a.MAIN_PRODUCT_NO"; + this.gv_mainProductNo.MinWidth = 50; + this.gv_mainProductNo.Visible = true; + this.gv_mainProductNo.Width = 94; + this.gv_mainProductNo.OptionsColumn.AllowEdit = false; + this.gv_mainProductNo.VisibleIndex = 0; + + // + //lb_erpWtzz + // + this.lb_erpWtzz.Location = new System.Drawing.Point(270, 372); + this.lb_erpWtzz.Name = "lb_erpWtzz"; + this.lb_erpWtzz.Size = new System.Drawing.Size(150, 21); + this.lb_erpWtzz.TabIndex = 519; + this.lb_erpWtzz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpWtzz.Text = "鏄惁濮旀墭 "; + // + //txt_erpWtzz + // + this.txt_erpWtzz.Location = new System.Drawing.Point(330, 372); + this.txt_erpWtzz.Name = "txt_erpWtzz"; + this.txt_erpWtzz.Size = new System.Drawing.Size(150, 21); + this.txt_erpWtzz.TabIndex = 519; + this.txt_erpWtzz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpWtzz + // + this.gv_erpWtzz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpWtzz.AppearanceCell.Options.UseFont = true; + this.gv_erpWtzz.FieldName = "erpWtzz"; + this.gv_erpWtzz.Caption = "鏄惁濮旀墭 "; + this.gv_erpWtzz.Tag = "query_a.ERP_WTZZ"; + this.gv_erpWtzz.MinWidth = 50; + this.gv_erpWtzz.Visible = true; + this.gv_erpWtzz.Width = 94; + this.gv_erpWtzz.OptionsColumn.AllowEdit = false; + this.gv_erpWtzz.VisibleIndex = 0; + + // + //lb_erpSczz + // + this.lb_erpSczz.Location = new System.Drawing.Point(20, 372); + this.lb_erpSczz.Name = "lb_erpSczz"; + this.lb_erpSczz.Size = new System.Drawing.Size(150, 21); + this.lb_erpSczz.TabIndex = 507; + this.lb_erpSczz.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpSczz.Text = "鏄惁绠℃帶 "; + // + //txt_erpSczz + // + this.txt_erpSczz.Location = new System.Drawing.Point(80, 372); + this.txt_erpSczz.Name = "txt_erpSczz"; + this.txt_erpSczz.Size = new System.Drawing.Size(150, 21); + this.txt_erpSczz.TabIndex = 507; + this.txt_erpSczz.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpSczz + // + this.gv_erpSczz.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpSczz.AppearanceCell.Options.UseFont = true; + this.gv_erpSczz.FieldName = "erpSczz"; + this.gv_erpSczz.Caption = "鏄惁绠℃帶 "; + this.gv_erpSczz.Tag = "query_a.ERP_SCZZ"; + this.gv_erpSczz.MinWidth = 50; + this.gv_erpSczz.Visible = true; + this.gv_erpSczz.Width = 94; + this.gv_erpSczz.OptionsColumn.AllowEdit = false; + this.gv_erpSczz.VisibleIndex = 0; + + // + //lb_srcSplitBillno + // + this.lb_srcSplitBillno.Location = new System.Drawing.Point(770, 340); + this.lb_srcSplitBillno.Name = "lb_srcSplitBillno"; + this.lb_srcSplitBillno.Size = new System.Drawing.Size(150, 21); + this.lb_srcSplitBillno.TabIndex = 496; + this.lb_srcSplitBillno.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_srcSplitBillno.Text = "鍒嗗崟鍙� "; + // + //txt_srcSplitBillno + // + this.txt_srcSplitBillno.Location = new System.Drawing.Point(830, 340); + this.txt_srcSplitBillno.Name = "txt_srcSplitBillno"; + this.txt_srcSplitBillno.Size = new System.Drawing.Size(150, 21); + this.txt_srcSplitBillno.TabIndex = 496; + this.txt_srcSplitBillno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_srcSplitBillno + // + this.gv_srcSplitBillno.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_srcSplitBillno.AppearanceCell.Options.UseFont = true; + this.gv_srcSplitBillno.FieldName = "srcSplitBillno"; + this.gv_srcSplitBillno.Caption = "鍒嗗崟鍙� "; + this.gv_srcSplitBillno.Tag = "query_a.SRC_SPLIT_BILLNO"; + this.gv_srcSplitBillno.MinWidth = 50; + this.gv_srcSplitBillno.Visible = true; + this.gv_srcSplitBillno.Width = 94; + this.gv_srcSplitBillno.OptionsColumn.AllowEdit = false; + this.gv_srcSplitBillno.VisibleIndex = 0; + + // + //lb_closeType + // + this.lb_closeType.Location = new System.Drawing.Point(520, 340); + this.lb_closeType.Name = "lb_closeType"; + this.lb_closeType.Size = new System.Drawing.Size(150, 21); + this.lb_closeType.TabIndex = 483; + this.lb_closeType.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_closeType.Text = "鍏抽棴绫诲瀷 "; + // + //txt_closeType + // + this.txt_closeType.Location = new System.Drawing.Point(580, 340); + this.txt_closeType.Name = "txt_closeType"; + this.txt_closeType.Size = new System.Drawing.Size(150, 21); + this.txt_closeType.TabIndex = 483; + this.txt_closeType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_closeType + // + this.gv_closeType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_closeType.AppearanceCell.Options.UseFont = true; + this.gv_closeType.FieldName = "closeType"; + this.gv_closeType.Caption = "鍏抽棴绫诲瀷 "; + this.gv_closeType.Tag = "query_a.CLOSE_TYPE"; + this.gv_closeType.MinWidth = 50; + this.gv_closeType.Visible = true; + this.gv_closeType.Width = 94; + this.gv_closeType.OptionsColumn.AllowEdit = false; + this.gv_closeType.VisibleIndex = 0; + + // + //lb_forceCloserid + // + this.lb_forceCloserid.Location = new System.Drawing.Point(270, 340); + this.lb_forceCloserid.Name = "lb_forceCloserid"; + this.lb_forceCloserid.Size = new System.Drawing.Size(150, 21); + this.lb_forceCloserid.TabIndex = 471; + this.lb_forceCloserid.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_forceCloserid.Text = "寮哄埗鍏抽棴浜� "; + // + //txt_forceCloserid + // + this.txt_forceCloserid.Location = new System.Drawing.Point(330, 340); + this.txt_forceCloserid.Name = "txt_forceCloserid"; + this.txt_forceCloserid.Size = new System.Drawing.Size(150, 21); + this.txt_forceCloserid.TabIndex = 471; + this.txt_forceCloserid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_forceCloserid + // + this.gv_forceCloserid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_forceCloserid.AppearanceCell.Options.UseFont = true; + this.gv_forceCloserid.FieldName = "forceCloserid"; + this.gv_forceCloserid.Caption = "寮哄埗鍏抽棴浜� "; + this.gv_forceCloserid.Tag = "query_a.FORCE_CLOSERID"; + this.gv_forceCloserid.MinWidth = 50; + this.gv_forceCloserid.Visible = true; + this.gv_forceCloserid.Width = 94; + this.gv_forceCloserid.OptionsColumn.AllowEdit = false; + this.gv_forceCloserid.VisibleIndex = 0; + + // + //lb_saleOrderEntryseq + // + this.lb_saleOrderEntryseq.Location = new System.Drawing.Point(20, 340); + this.lb_saleOrderEntryseq.Name = "lb_saleOrderEntryseq"; + this.lb_saleOrderEntryseq.Size = new System.Drawing.Size(150, 21); + this.lb_saleOrderEntryseq.TabIndex = 460; + this.lb_saleOrderEntryseq.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_saleOrderEntryseq.Text = "閿�鍞鍗曡鍙� "; + // + //txt_saleOrderEntryseq + // + this.txt_saleOrderEntryseq.Location = new System.Drawing.Point(80, 340); + this.txt_saleOrderEntryseq.Name = "txt_saleOrderEntryseq"; + this.txt_saleOrderEntryseq.Size = new System.Drawing.Size(150, 21); + this.txt_saleOrderEntryseq.TabIndex = 460; + this.txt_saleOrderEntryseq.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_saleOrderEntryseq + // + this.gv_saleOrderEntryseq.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_saleOrderEntryseq.AppearanceCell.Options.UseFont = true; + this.gv_saleOrderEntryseq.FieldName = "saleOrderEntryseq"; + this.gv_saleOrderEntryseq.Caption = "閿�鍞鍗曡鍙� "; + this.gv_saleOrderEntryseq.Tag = "query_a.SALE_ORDER_ENTRYSEQ"; + this.gv_saleOrderEntryseq.MinWidth = 50; + this.gv_saleOrderEntryseq.Visible = true; + this.gv_saleOrderEntryseq.Width = 94; + this.gv_saleOrderEntryseq.OptionsColumn.AllowEdit = false; + this.gv_saleOrderEntryseq.VisibleIndex = 0; + + // + //lb_saleOrderNo + // + this.lb_saleOrderNo.Location = new System.Drawing.Point(770, 308); + this.lb_saleOrderNo.Name = "lb_saleOrderNo"; + this.lb_saleOrderNo.Size = new System.Drawing.Size(150, 21); + this.lb_saleOrderNo.TabIndex = 450; + this.lb_saleOrderNo.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_saleOrderNo.Text = "閿�鍞鍗曞彿 "; + // + //txt_saleOrderNo + // + this.txt_saleOrderNo.Location = new System.Drawing.Point(830, 308); + this.txt_saleOrderNo.Name = "txt_saleOrderNo"; + this.txt_saleOrderNo.Size = new System.Drawing.Size(150, 21); + this.txt_saleOrderNo.TabIndex = 450; + this.txt_saleOrderNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_saleOrderNo + // + this.gv_saleOrderNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_saleOrderNo.AppearanceCell.Options.UseFont = true; + this.gv_saleOrderNo.FieldName = "saleOrderNo"; + this.gv_saleOrderNo.Caption = "閿�鍞鍗曞彿 "; + this.gv_saleOrderNo.Tag = "query_a.SALE_ORDER_NO"; + this.gv_saleOrderNo.MinWidth = 50; + this.gv_saleOrderNo.Visible = true; + this.gv_saleOrderNo.Width = 94; + this.gv_saleOrderNo.OptionsColumn.AllowEdit = false; + this.gv_saleOrderNo.VisibleIndex = 0; + + // + //lb_srcBillentryseq + // + this.lb_srcBillentryseq.Location = new System.Drawing.Point(520, 308); + this.lb_srcBillentryseq.Name = "lb_srcBillentryseq"; + this.lb_srcBillentryseq.Size = new System.Drawing.Size(150, 21); + this.lb_srcBillentryseq.TabIndex = 438; + this.lb_srcBillentryseq.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_srcBillentryseq.Text = "鏉ユ簮琛屽彿 "; + // + //txt_srcBillentryseq + // + this.txt_srcBillentryseq.Location = new System.Drawing.Point(580, 308); + this.txt_srcBillentryseq.Name = "txt_srcBillentryseq"; + this.txt_srcBillentryseq.Size = new System.Drawing.Size(150, 21); + this.txt_srcBillentryseq.TabIndex = 438; + this.txt_srcBillentryseq.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_srcBillentryseq + // + this.gv_srcBillentryseq.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_srcBillentryseq.AppearanceCell.Options.UseFont = true; + this.gv_srcBillentryseq.FieldName = "srcBillentryseq"; + this.gv_srcBillentryseq.Caption = "鏉ユ簮琛屽彿 "; + this.gv_srcBillentryseq.Tag = "query_a.SRC_BILLENTRYSEQ"; + this.gv_srcBillentryseq.MinWidth = 50; + this.gv_srcBillentryseq.Visible = true; + this.gv_srcBillentryseq.Width = 94; + this.gv_srcBillentryseq.OptionsColumn.AllowEdit = false; + this.gv_srcBillentryseq.VisibleIndex = 0; + + // + //lb_srcBillNo + // + this.lb_srcBillNo.Location = new System.Drawing.Point(270, 308); + this.lb_srcBillNo.Name = "lb_srcBillNo"; + this.lb_srcBillNo.Size = new System.Drawing.Size(150, 21); + this.lb_srcBillNo.TabIndex = 427; + this.lb_srcBillNo.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_srcBillNo.Text = "鏉ユ簮鍗曞彿 "; + // + //txt_srcBillNo + // + this.txt_srcBillNo.Location = new System.Drawing.Point(330, 308); + this.txt_srcBillNo.Name = "txt_srcBillNo"; + this.txt_srcBillNo.Size = new System.Drawing.Size(150, 21); + this.txt_srcBillNo.TabIndex = 427; + this.txt_srcBillNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_srcBillNo + // + this.gv_srcBillNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_srcBillNo.AppearanceCell.Options.UseFont = true; + this.gv_srcBillNo.FieldName = "srcBillNo"; + this.gv_srcBillNo.Caption = "鏉ユ簮鍗曞彿 "; + this.gv_srcBillNo.Tag = "query_a.SRC_BILL_NO"; + this.gv_srcBillNo.MinWidth = 50; + this.gv_srcBillNo.Visible = true; + this.gv_srcBillNo.Width = 94; + this.gv_srcBillNo.OptionsColumn.AllowEdit = false; + this.gv_srcBillNo.VisibleIndex = 0; + + // + //lb_srcBillType + // + this.lb_srcBillType.Location = new System.Drawing.Point(20, 308); + this.lb_srcBillType.Name = "lb_srcBillType"; + this.lb_srcBillType.Size = new System.Drawing.Size(150, 21); + this.lb_srcBillType.TabIndex = 417; + this.lb_srcBillType.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_srcBillType.Text = "鏉ユ簮鍗曟嵁绫诲瀷 "; + // + //txt_srcBillType + // + this.txt_srcBillType.Location = new System.Drawing.Point(80, 308); + this.txt_srcBillType.Name = "txt_srcBillType"; + this.txt_srcBillType.Size = new System.Drawing.Size(150, 21); + this.txt_srcBillType.TabIndex = 417; + this.txt_srcBillType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_srcBillType + // + this.gv_srcBillType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_srcBillType.AppearanceCell.Options.UseFont = true; + this.gv_srcBillType.FieldName = "srcBillType"; + this.gv_srcBillType.Caption = "鏉ユ簮鍗曟嵁绫诲瀷 "; + this.gv_srcBillType.Tag = "query_a.SRC_BILL_TYPE"; + this.gv_srcBillType.MinWidth = 50; + this.gv_srcBillType.Visible = true; + this.gv_srcBillType.Width = 94; + this.gv_srcBillType.OptionsColumn.AllowEdit = false; + this.gv_srcBillType.VisibleIndex = 0; + + // + //lb_createType + // + this.lb_createType.Location = new System.Drawing.Point(770, 276); + this.lb_createType.Name = "lb_createType"; + this.lb_createType.Size = new System.Drawing.Size(150, 21); + this.lb_createType.TabIndex = 408; + this.lb_createType.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_createType.Text = "鍒跺崟绫诲瀷 "; + // + //txt_createType + // + this.txt_createType.Location = new System.Drawing.Point(830, 276); + this.txt_createType.Name = "txt_createType"; + this.txt_createType.Size = new System.Drawing.Size(150, 21); + this.txt_createType.TabIndex = 408; + this.txt_createType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_createType + // + this.gv_createType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_createType.AppearanceCell.Options.UseFont = true; + this.gv_createType.FieldName = "createType"; + this.gv_createType.Caption = "鍒跺崟绫诲瀷 "; + this.gv_createType.Tag = "query_a.CREATE_TYPE"; + this.gv_createType.MinWidth = 50; + this.gv_createType.Visible = true; + this.gv_createType.Width = 94; + this.gv_createType.OptionsColumn.AllowEdit = false; + this.gv_createType.VisibleIndex = 0; + + // + //lb_caa015Head + // + this.lb_caa015Head.Location = new System.Drawing.Point(520, 276); + this.lb_caa015Head.Name = "lb_caa015Head"; + this.lb_caa015Head.Size = new System.Drawing.Size(150, 21); + this.lb_caa015Head.TabIndex = 397; + this.lb_caa015Head.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa015Head.Text = "寮曠敤鍗曞彿 "; + // + //txt_caa015Head + // + this.txt_caa015Head.Location = new System.Drawing.Point(580, 276); + this.txt_caa015Head.Name = "txt_caa015Head"; + this.txt_caa015Head.Size = new System.Drawing.Size(150, 21); + this.txt_caa015Head.TabIndex = 397; + this.txt_caa015Head.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa015Head + // + this.gv_caa015Head.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa015Head.AppearanceCell.Options.UseFont = true; + this.gv_caa015Head.FieldName = "caa015Head"; + this.gv_caa015Head.Caption = "寮曠敤鍗曞彿 "; + this.gv_caa015Head.Tag = "query_a.CAA015_HEAD"; + this.gv_caa015Head.MinWidth = 50; + this.gv_caa015Head.Visible = true; + this.gv_caa015Head.Width = 94; + this.gv_caa015Head.OptionsColumn.AllowEdit = false; + this.gv_caa015Head.VisibleIndex = 0; + + // + //lb_lot + // + this.lb_lot.Location = new System.Drawing.Point(270, 276); + this.lb_lot.Name = "lb_lot"; + this.lb_lot.Size = new System.Drawing.Size(150, 21); + this.lb_lot.TabIndex = 387; + this.lb_lot.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_lot.Text = "鎵规 "; + // + //txt_lot + // + this.txt_lot.Location = new System.Drawing.Point(330, 276); + this.txt_lot.Name = "txt_lot"; + this.txt_lot.Size = new System.Drawing.Size(150, 21); + this.txt_lot.TabIndex = 387; + this.txt_lot.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_lot + // + this.gv_lot.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_lot.AppearanceCell.Options.UseFont = true; + this.gv_lot.FieldName = "lot"; + this.gv_lot.Caption = "鎵规 "; + this.gv_lot.Tag = "query_a.LOT"; + this.gv_lot.MinWidth = 50; + this.gv_lot.Visible = true; + this.gv_lot.Width = 94; + this.gv_lot.OptionsColumn.AllowEdit = false; + this.gv_lot.VisibleIndex = 0; + + // + //lb_mtono + // + this.lb_mtono.Location = new System.Drawing.Point(20, 276); + this.lb_mtono.Name = "lb_mtono"; + this.lb_mtono.Size = new System.Drawing.Size(150, 21); + this.lb_mtono.TabIndex = 378; + this.lb_mtono.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_mtono.Text = "涓昏溅闂磋皟搴﹀崟 "; + // + //txt_mtono + // + this.txt_mtono.Location = new System.Drawing.Point(80, 276); + this.txt_mtono.Name = "txt_mtono"; + this.txt_mtono.Size = new System.Drawing.Size(150, 21); + this.txt_mtono.TabIndex = 378; + this.txt_mtono.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_mtono + // + this.gv_mtono.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_mtono.AppearanceCell.Options.UseFont = true; + this.gv_mtono.FieldName = "mtono"; + this.gv_mtono.Caption = "涓昏溅闂磋皟搴﹀崟 "; + this.gv_mtono.Tag = "query_a.MTONO"; + this.gv_mtono.MinWidth = 50; + this.gv_mtono.Visible = true; + this.gv_mtono.Width = 94; + this.gv_mtono.OptionsColumn.AllowEdit = false; + this.gv_mtono.VisibleIndex = 0; + + // + //lb_stockInlimitl + // + this.lb_stockInlimitl.Location = new System.Drawing.Point(770, 244); + this.lb_stockInlimitl.Name = "lb_stockInlimitl"; + this.lb_stockInlimitl.Size = new System.Drawing.Size(150, 21); + this.lb_stockInlimitl.TabIndex = 370; + this.lb_stockInlimitl.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_stockInlimitl.Text = "鍏ュ簱涓嬮檺 "; + // + //txt_stockInlimitl + // + this.txt_stockInlimitl.Location = new System.Drawing.Point(830, 244); + this.txt_stockInlimitl.Name = "txt_stockInlimitl"; + this.txt_stockInlimitl.Size = new System.Drawing.Size(150, 21); + this.txt_stockInlimitl.TabIndex = 370; + this.txt_stockInlimitl.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_stockInlimitl + // + this.gv_stockInlimitl.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_stockInlimitl.AppearanceCell.Options.UseFont = true; + this.gv_stockInlimitl.FieldName = "stockInlimitl"; + this.gv_stockInlimitl.Caption = "鍏ュ簱涓嬮檺 "; + this.gv_stockInlimitl.Tag = "query_a.STOCK_INLIMITL"; + this.gv_stockInlimitl.MinWidth = 50; + this.gv_stockInlimitl.Visible = true; + this.gv_stockInlimitl.Width = 94; + this.gv_stockInlimitl.OptionsColumn.AllowEdit = false; + this.gv_stockInlimitl.VisibleIndex = 0; + + // + //lb_stockInlimith + // + this.lb_stockInlimith.Location = new System.Drawing.Point(520, 244); + this.lb_stockInlimith.Name = "lb_stockInlimith"; + this.lb_stockInlimith.Size = new System.Drawing.Size(150, 21); + this.lb_stockInlimith.TabIndex = 360; + this.lb_stockInlimith.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_stockInlimith.Text = "鍏ュ簱涓婇檺 "; + // + //txt_stockInlimith + // + this.txt_stockInlimith.Location = new System.Drawing.Point(580, 244); + this.txt_stockInlimith.Name = "txt_stockInlimith"; + this.txt_stockInlimith.Size = new System.Drawing.Size(150, 21); + this.txt_stockInlimith.TabIndex = 360; + this.txt_stockInlimith.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_stockInlimith + // + this.gv_stockInlimith.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_stockInlimith.AppearanceCell.Options.UseFont = true; + this.gv_stockInlimith.FieldName = "stockInlimith"; + this.gv_stockInlimith.Caption = "鍏ュ簱涓婇檺 "; + this.gv_stockInlimith.Tag = "query_a.STOCK_INLIMITH"; + this.gv_stockInlimith.MinWidth = 50; + this.gv_stockInlimith.Visible = true; + this.gv_stockInlimith.Width = 94; + this.gv_stockInlimith.OptionsColumn.AllowEdit = false; + this.gv_stockInlimith.VisibleIndex = 0; + + // + //lb_planId + // + this.lb_planId.Location = new System.Drawing.Point(270, 244); + this.lb_planId.Name = "lb_planId"; + this.lb_planId.Size = new System.Drawing.Size(150, 21); + this.lb_planId.TabIndex = 351; + this.lb_planId.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_planId.Text = "璁″垝鍛� "; + // + //txt_planId + // + this.txt_planId.Location = new System.Drawing.Point(330, 244); + this.txt_planId.Name = "txt_planId"; + this.txt_planId.Size = new System.Drawing.Size(150, 21); + this.txt_planId.TabIndex = 351; + this.txt_planId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_planId + // + this.gv_planId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_planId.AppearanceCell.Options.UseFont = true; + this.gv_planId.FieldName = "planId"; + this.gv_planId.Caption = "璁″垝鍛� "; + this.gv_planId.Tag = "query_a.PLAN_ID"; + this.gv_planId.MinWidth = 50; + this.gv_planId.Visible = true; + this.gv_planId.Width = 94; + this.gv_planId.OptionsColumn.AllowEdit = false; + this.gv_planId.VisibleIndex = 0; + + // + //lb_workGroupId + // + this.lb_workGroupId.Location = new System.Drawing.Point(20, 244); + this.lb_workGroupId.Name = "lb_workGroupId"; + this.lb_workGroupId.Size = new System.Drawing.Size(150, 21); + this.lb_workGroupId.TabIndex = 343; + this.lb_workGroupId.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_workGroupId.Text = "璁″垝缁� "; + // + //txt_workGroupId + // + this.txt_workGroupId.Location = new System.Drawing.Point(80, 244); + this.txt_workGroupId.Name = "txt_workGroupId"; + this.txt_workGroupId.Size = new System.Drawing.Size(150, 21); + this.txt_workGroupId.TabIndex = 343; + this.txt_workGroupId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_workGroupId + // + this.gv_workGroupId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_workGroupId.AppearanceCell.Options.UseFont = true; + this.gv_workGroupId.FieldName = "workGroupId"; + this.gv_workGroupId.Caption = "璁″垝缁� "; + this.gv_workGroupId.Tag = "query_a.WORK_GROUP_ID"; + this.gv_workGroupId.MinWidth = 50; + this.gv_workGroupId.Visible = true; + this.gv_workGroupId.Width = 94; + this.gv_workGroupId.OptionsColumn.AllowEdit = false; + this.gv_workGroupId.VisibleIndex = 0; + + // + //lb_createDate + // + this.lb_createDate.Location = new System.Drawing.Point(770, 212); + this.lb_createDate.Name = "lb_createDate"; + this.lb_createDate.Size = new System.Drawing.Size(150, 21); + this.lb_createDate.TabIndex = 336; + this.lb_createDate.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_createDate.Text = "鍗曟嵁鏃ユ湡 "; + // + //txt_createDate + // + this.txt_createDate.Location = new System.Drawing.Point(830, 212); + this.txt_createDate.Name = "txt_createDate"; + this.txt_createDate.Size = new System.Drawing.Size(150, 21); + this.txt_createDate.TabIndex = 336; + this.txt_createDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_createDate + // + this.gv_createDate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_createDate.AppearanceCell.Options.UseFont = true; + this.gv_createDate.FieldName = "createDate"; + this.gv_createDate.Caption = "鍗曟嵁鏃ユ湡 "; + this.gv_createDate.Tag = "query_a.CREATE_DATE"; + this.gv_createDate.MinWidth = 50; + this.gv_createDate.Visible = true; + this.gv_createDate.Width = 94; + this.gv_createDate.OptionsColumn.AllowEdit = false; + this.gv_createDate.VisibleIndex = 0; + + // + //lb_depotCode + // + this.lb_depotCode.Location = new System.Drawing.Point(520, 212); + this.lb_depotCode.Name = "lb_depotCode"; + this.lb_depotCode.Size = new System.Drawing.Size(150, 21); + this.lb_depotCode.TabIndex = 327; + this.lb_depotCode.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_depotCode.Text = "浠撳簱 "; + // + //txt_depotCode + // + this.txt_depotCode.Location = new System.Drawing.Point(580, 212); + this.txt_depotCode.Name = "txt_depotCode"; + this.txt_depotCode.Size = new System.Drawing.Size(150, 21); + this.txt_depotCode.TabIndex = 327; + this.txt_depotCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_depotCode + // + this.gv_depotCode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_depotCode.AppearanceCell.Options.UseFont = true; + this.gv_depotCode.FieldName = "depotCode"; + this.gv_depotCode.Caption = "浠撳簱 "; + this.gv_depotCode.Tag = "query_a.DEPOT_CODE"; + this.gv_depotCode.MinWidth = 50; + this.gv_depotCode.Visible = true; + this.gv_depotCode.Width = 94; + this.gv_depotCode.OptionsColumn.AllowEdit = false; + this.gv_depotCode.VisibleIndex = 0; + + // + //lb_workShopId + // + this.lb_workShopId.Location = new System.Drawing.Point(270, 212); + this.lb_workShopId.Name = "lb_workShopId"; + this.lb_workShopId.Size = new System.Drawing.Size(150, 21); + this.lb_workShopId.TabIndex = 319; + this.lb_workShopId.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_workShopId.Text = "浜х嚎 "; + // + //txt_workShopId + // + this.txt_workShopId.Location = new System.Drawing.Point(330, 212); + this.txt_workShopId.Name = "txt_workShopId"; + this.txt_workShopId.Size = new System.Drawing.Size(150, 21); + this.txt_workShopId.TabIndex = 319; + this.txt_workShopId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_workShopId + // + this.gv_workShopId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_workShopId.AppearanceCell.Options.UseFont = true; + this.gv_workShopId.FieldName = "workShopId"; + this.gv_workShopId.Caption = "浜х嚎 "; + this.gv_workShopId.Tag = "query_a.WORK_SHOP_ID"; + this.gv_workShopId.MinWidth = 50; + this.gv_workShopId.Visible = true; + this.gv_workShopId.Width = 94; + this.gv_workShopId.OptionsColumn.AllowEdit = false; + this.gv_workShopId.VisibleIndex = 0; + + // + //lb_routingId + // + this.lb_routingId.Location = new System.Drawing.Point(20, 212); + this.lb_routingId.Name = "lb_routingId"; + this.lb_routingId.Size = new System.Drawing.Size(150, 21); + this.lb_routingId.TabIndex = 312; + this.lb_routingId.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_routingId.Text = "宸ヨ壓璺嚎 "; + // + //txt_routingId + // + this.txt_routingId.Location = new System.Drawing.Point(80, 212); + this.txt_routingId.Name = "txt_routingId"; + this.txt_routingId.Size = new System.Drawing.Size(150, 21); + this.txt_routingId.TabIndex = 312; + this.txt_routingId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_routingId + // + this.gv_routingId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_routingId.AppearanceCell.Options.UseFont = true; + this.gv_routingId.FieldName = "routingId"; + this.gv_routingId.Caption = "宸ヨ壓璺嚎 "; + this.gv_routingId.Tag = "query_a.ROUTING_ID"; + this.gv_routingId.MinWidth = 50; + this.gv_routingId.Visible = true; + this.gv_routingId.Width = 94; + this.gv_routingId.OptionsColumn.AllowEdit = false; + this.gv_routingId.VisibleIndex = 0; + + // + //lb_caa024 + // + this.lb_caa024.Location = new System.Drawing.Point(770, 180); + this.lb_caa024.Name = "lb_caa024"; + this.lb_caa024.Size = new System.Drawing.Size(150, 21); + this.lb_caa024.TabIndex = 306; + this.lb_caa024.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa024.Text = "宸插叆搴撴暟閲� "; + // + //txt_caa024 + // + this.txt_caa024.Location = new System.Drawing.Point(830, 180); + this.txt_caa024.Name = "txt_caa024"; + this.txt_caa024.Size = new System.Drawing.Size(150, 21); + this.txt_caa024.TabIndex = 306; + this.txt_caa024.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa024 + // + this.gv_caa024.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa024.AppearanceCell.Options.UseFont = true; + this.gv_caa024.FieldName = "caa024"; + this.gv_caa024.Caption = "宸插叆搴撴暟閲� "; + this.gv_caa024.Tag = "query_a.CAA024"; + this.gv_caa024.MinWidth = 50; + this.gv_caa024.Visible = true; + this.gv_caa024.Width = 94; + this.gv_caa024.OptionsColumn.AllowEdit = false; + this.gv_caa024.VisibleIndex = 0; + + // + //lb_caa023 + // + this.lb_caa023.Location = new System.Drawing.Point(520, 180); + this.lb_caa023.Name = "lb_caa023"; + this.lb_caa023.Size = new System.Drawing.Size(150, 21); + this.lb_caa023.TabIndex = 298; + this.lb_caa023.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa023.Text = "涓氬姟鐘舵��(1锛岃鍒掞紝2銆佽鍒掔‘璁� 2銆佷笅杈� 4銆佸紑宸� 5銆佸畬宸� 6銆佺粨妗堬紝7銆佺粨绠�) "; + // + //txt_caa023 + // + this.txt_caa023.Location = new System.Drawing.Point(580, 180); + this.txt_caa023.Name = "txt_caa023"; + this.txt_caa023.Size = new System.Drawing.Size(150, 21); + this.txt_caa023.TabIndex = 298; + this.txt_caa023.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa023 + // + this.gv_caa023.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa023.AppearanceCell.Options.UseFont = true; + this.gv_caa023.FieldName = "caa023"; + this.gv_caa023.Caption = "涓氬姟鐘舵��(1锛岃鍒掞紝2銆佽鍒掔‘璁� 2銆佷笅杈� 4銆佸紑宸� 5銆佸畬宸� 6銆佺粨妗堬紝7銆佺粨绠�) "; + this.gv_caa023.Tag = "query_a.CAA023"; + this.gv_caa023.MinWidth = 50; + this.gv_caa023.Visible = true; + this.gv_caa023.Width = 94; + this.gv_caa023.OptionsColumn.AllowEdit = false; + this.gv_caa023.VisibleIndex = 0; + + // + //lb_caa022 + // + this.lb_caa022.Location = new System.Drawing.Point(270, 180); + this.lb_caa022.Name = "lb_caa022"; + this.lb_caa022.Size = new System.Drawing.Size(150, 21); + this.lb_caa022.TabIndex = 291; + this.lb_caa022.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa022.Text = "鏈帓鏁伴噺锛堝純鐢級 "; + // + //txt_caa022 + // + this.txt_caa022.Location = new System.Drawing.Point(330, 180); + this.txt_caa022.Name = "txt_caa022"; + this.txt_caa022.Size = new System.Drawing.Size(150, 21); + this.txt_caa022.TabIndex = 291; + this.txt_caa022.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa022 + // + this.gv_caa022.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa022.AppearanceCell.Options.UseFont = true; + this.gv_caa022.FieldName = "caa022"; + this.gv_caa022.Caption = "鏈帓鏁伴噺锛堝純鐢級 "; + this.gv_caa022.Tag = "query_a.CAA022"; + this.gv_caa022.MinWidth = 50; + this.gv_caa022.Visible = true; + this.gv_caa022.Width = 94; + this.gv_caa022.OptionsColumn.AllowEdit = false; + this.gv_caa022.VisibleIndex = 0; + + // + //lb_checkUser + // + this.lb_checkUser.Location = new System.Drawing.Point(20, 180); + this.lb_checkUser.Name = "lb_checkUser"; + this.lb_checkUser.Size = new System.Drawing.Size(150, 21); + this.lb_checkUser.TabIndex = 285; + this.lb_checkUser.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_checkUser.Text = "瀹℃牳浜� "; + // + //txt_checkUser + // + this.txt_checkUser.Location = new System.Drawing.Point(80, 180); + this.txt_checkUser.Name = "txt_checkUser"; + this.txt_checkUser.Size = new System.Drawing.Size(150, 21); + this.txt_checkUser.TabIndex = 285; + this.txt_checkUser.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_checkUser + // + this.gv_checkUser.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_checkUser.AppearanceCell.Options.UseFont = true; + this.gv_checkUser.FieldName = "checkUser"; + this.gv_checkUser.Caption = "瀹℃牳浜� "; + this.gv_checkUser.Tag = "query_a.CHECK_USER"; + this.gv_checkUser.MinWidth = 50; + this.gv_checkUser.Visible = true; + this.gv_checkUser.Width = 94; + this.gv_checkUser.OptionsColumn.AllowEdit = false; + this.gv_checkUser.VisibleIndex = 0; + + // + //lb_checkDate + // + this.lb_checkDate.Location = new System.Drawing.Point(770, 148); + this.lb_checkDate.Name = "lb_checkDate"; + this.lb_checkDate.Size = new System.Drawing.Size(150, 21); + this.lb_checkDate.TabIndex = 280; + this.lb_checkDate.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_checkDate.Text = "瀹℃牳鏃ユ湡 "; + // + //txt_checkDate + // + this.txt_checkDate.Location = new System.Drawing.Point(830, 148); + this.txt_checkDate.Name = "txt_checkDate"; + this.txt_checkDate.Size = new System.Drawing.Size(150, 21); + this.txt_checkDate.TabIndex = 280; + this.txt_checkDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_checkDate + // + this.gv_checkDate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_checkDate.AppearanceCell.Options.UseFont = true; + this.gv_checkDate.FieldName = "checkDate"; + this.gv_checkDate.Caption = "瀹℃牳鏃ユ湡 "; + this.gv_checkDate.Tag = "query_a.CHECK_DATE"; + this.gv_checkDate.MinWidth = 50; + this.gv_checkDate.Visible = true; + this.gv_checkDate.Width = 94; + this.gv_checkDate.OptionsColumn.AllowEdit = false; + this.gv_checkDate.VisibleIndex = 0; + + // + //lb_fstatus + // + this.lb_fstatus.Location = new System.Drawing.Point(520, 148); + this.lb_fstatus.Name = "lb_fstatus"; + this.lb_fstatus.Size = new System.Drawing.Size(150, 21); + this.lb_fstatus.TabIndex = 273; + this.lb_fstatus.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_fstatus.Text = "瀹℃牳鐮� "; + // + //txt_fstatus + // + this.txt_fstatus.Location = new System.Drawing.Point(580, 148); + this.txt_fstatus.Name = "txt_fstatus"; + this.txt_fstatus.Size = new System.Drawing.Size(150, 21); + this.txt_fstatus.TabIndex = 273; + this.txt_fstatus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_fstatus + // + this.gv_fstatus.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_fstatus.AppearanceCell.Options.UseFont = true; + this.gv_fstatus.FieldName = "fstatus"; + this.gv_fstatus.Caption = "瀹℃牳鐮� "; + this.gv_fstatus.Tag = "query_a.FSTATUS"; + this.gv_fstatus.MinWidth = 50; + this.gv_fstatus.Visible = true; + this.gv_fstatus.Width = 94; + this.gv_fstatus.OptionsColumn.AllowEdit = false; + this.gv_fstatus.VisibleIndex = 0; + + // + //lb_caa021 + // + this.lb_caa021.Location = new System.Drawing.Point(270, 148); + this.lb_caa021.Name = "lb_caa021"; + this.lb_caa021.Size = new System.Drawing.Size(150, 21); + this.lb_caa021.TabIndex = 267; + this.lb_caa021.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa021.Text = "鐢熶骇杞﹂棿 "; + // + //txt_caa021 + // + this.txt_caa021.Location = new System.Drawing.Point(330, 148); + this.txt_caa021.Name = "txt_caa021"; + this.txt_caa021.Size = new System.Drawing.Size(150, 21); + this.txt_caa021.TabIndex = 267; + this.txt_caa021.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa021 + // + this.gv_caa021.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa021.AppearanceCell.Options.UseFont = true; + this.gv_caa021.FieldName = "caa021"; + this.gv_caa021.Caption = "鐢熶骇杞﹂棿 "; + this.gv_caa021.Tag = "query_a.CAA021"; + this.gv_caa021.MinWidth = 50; + this.gv_caa021.Visible = true; + this.gv_caa021.Width = 94; + this.gv_caa021.OptionsColumn.AllowEdit = false; + this.gv_caa021.VisibleIndex = 0; + + // + //lb_caa020 + // + this.lb_caa020.Location = new System.Drawing.Point(20, 148); + this.lb_caa020.Name = "lb_caa020"; + this.lb_caa020.Size = new System.Drawing.Size(150, 21); + this.lb_caa020.TabIndex = 262; + this.lb_caa020.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa020.Text = "ERP鐢熶骇璁㈠崟鍗曞彿 "; + // + //txt_caa020 + // + this.txt_caa020.Location = new System.Drawing.Point(80, 148); + this.txt_caa020.Name = "txt_caa020"; + this.txt_caa020.Size = new System.Drawing.Size(150, 21); + this.txt_caa020.TabIndex = 262; + this.txt_caa020.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa020 + // + this.gv_caa020.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa020.AppearanceCell.Options.UseFont = true; + this.gv_caa020.FieldName = "caa020"; + this.gv_caa020.Caption = "ERP鐢熶骇璁㈠崟鍗曞彿 "; + this.gv_caa020.Tag = "query_a.CAA020"; + this.gv_caa020.MinWidth = 50; + this.gv_caa020.Visible = true; + this.gv_caa020.Width = 94; + this.gv_caa020.OptionsColumn.AllowEdit = false; + this.gv_caa020.VisibleIndex = 0; + + // + //lb_caa019 + // + this.lb_caa019.Location = new System.Drawing.Point(770, 116); + this.lb_caa019.Name = "lb_caa019"; + this.lb_caa019.Size = new System.Drawing.Size(150, 21); + this.lb_caa019.TabIndex = 258; + this.lb_caa019.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa019.Text = "ERP鐢熶骇璁㈠崟搴忓彿 "; + // + //txt_caa019 + // + this.txt_caa019.Location = new System.Drawing.Point(830, 116); + this.txt_caa019.Name = "txt_caa019"; + this.txt_caa019.Size = new System.Drawing.Size(150, 21); + this.txt_caa019.TabIndex = 258; + this.txt_caa019.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa019 + // + this.gv_caa019.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa019.AppearanceCell.Options.UseFont = true; + this.gv_caa019.FieldName = "caa019"; + this.gv_caa019.Caption = "ERP鐢熶骇璁㈠崟搴忓彿 "; + this.gv_caa019.Tag = "query_a.CAA019"; + this.gv_caa019.MinWidth = 50; + this.gv_caa019.Visible = true; + this.gv_caa019.Width = 94; + this.gv_caa019.OptionsColumn.AllowEdit = false; + this.gv_caa019.VisibleIndex = 0; + + // + //lb_caa018 + // + this.lb_caa018.Location = new System.Drawing.Point(520, 116); + this.lb_caa018.Name = "lb_caa018"; + this.lb_caa018.Size = new System.Drawing.Size(150, 21); + this.lb_caa018.TabIndex = 252; + this.lb_caa018.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa018.Text = "ERP鐢熶骇璁㈠崟ID "; + // + //txt_caa018 + // + this.txt_caa018.Location = new System.Drawing.Point(580, 116); + this.txt_caa018.Name = "txt_caa018"; + this.txt_caa018.Size = new System.Drawing.Size(150, 21); + this.txt_caa018.TabIndex = 252; + this.txt_caa018.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa018 + // + this.gv_caa018.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa018.AppearanceCell.Options.UseFont = true; + this.gv_caa018.FieldName = "caa018"; + this.gv_caa018.Caption = "ERP鐢熶骇璁㈠崟ID "; + this.gv_caa018.Tag = "query_a.CAA018"; + this.gv_caa018.MinWidth = 50; + this.gv_caa018.Visible = true; + this.gv_caa018.Width = 94; + this.gv_caa018.OptionsColumn.AllowEdit = false; + this.gv_caa018.VisibleIndex = 0; + + // + //lb_caa017 + // + this.lb_caa017.Location = new System.Drawing.Point(270, 116); + this.lb_caa017.Name = "lb_caa017"; + this.lb_caa017.Size = new System.Drawing.Size(150, 21); + this.lb_caa017.TabIndex = 247; + this.lb_caa017.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa017.Text = "宸叉帓鏁伴噺锛堝純鐢級 "; + // + //txt_caa017 + // + this.txt_caa017.Location = new System.Drawing.Point(330, 116); + this.txt_caa017.Name = "txt_caa017"; + this.txt_caa017.Size = new System.Drawing.Size(150, 21); + this.txt_caa017.TabIndex = 247; + this.txt_caa017.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa017 + // + this.gv_caa017.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa017.AppearanceCell.Options.UseFont = true; + this.gv_caa017.FieldName = "caa017"; + this.gv_caa017.Caption = "宸叉帓鏁伴噺锛堝純鐢級 "; + this.gv_caa017.Tag = "query_a.CAA017"; + this.gv_caa017.MinWidth = 50; + this.gv_caa017.Visible = true; + this.gv_caa017.Width = 94; + this.gv_caa017.OptionsColumn.AllowEdit = false; + this.gv_caa017.VisibleIndex = 0; + + // + //lb_caa016 + // + this.lb_caa016.Location = new System.Drawing.Point(20, 116); + this.lb_caa016.Name = "lb_caa016"; + this.lb_caa016.Size = new System.Drawing.Size(150, 21); + this.lb_caa016.TabIndex = 243; + this.lb_caa016.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa016.Text = "澶囨敞 "; + // + //txt_caa016 + // + this.txt_caa016.Location = new System.Drawing.Point(80, 116); + this.txt_caa016.Name = "txt_caa016"; + this.txt_caa016.Size = new System.Drawing.Size(150, 21); + this.txt_caa016.TabIndex = 243; + this.txt_caa016.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa016 + // + this.gv_caa016.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa016.AppearanceCell.Options.UseFont = true; + this.gv_caa016.FieldName = "caa016"; + this.gv_caa016.Caption = "澶囨敞 "; + this.gv_caa016.Tag = "query_a.CAA016"; + this.gv_caa016.MinWidth = 50; + this.gv_caa016.Visible = true; + this.gv_caa016.Width = 94; + this.gv_caa016.OptionsColumn.AllowEdit = false; + this.gv_caa016.VisibleIndex = 0; + + // + //lb_caa015 + // + this.lb_caa015.Location = new System.Drawing.Point(770, 84); + this.lb_caa015.Name = "lb_caa015"; + this.lb_caa015.Size = new System.Drawing.Size(150, 21); + this.lb_caa015.TabIndex = 240; + this.lb_caa015.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa015.Text = "閿�鍞鍗曞彿 "; + // + //txt_caa015 + // + this.txt_caa015.Location = new System.Drawing.Point(830, 84); + this.txt_caa015.Name = "txt_caa015"; + this.txt_caa015.Size = new System.Drawing.Size(150, 21); + this.txt_caa015.TabIndex = 240; + this.txt_caa015.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa015 + // + this.gv_caa015.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa015.AppearanceCell.Options.UseFont = true; + this.gv_caa015.FieldName = "caa015"; + this.gv_caa015.Caption = "閿�鍞鍗曞彿 "; + this.gv_caa015.Tag = "query_a.CAA015"; + this.gv_caa015.MinWidth = 50; + this.gv_caa015.Visible = true; + this.gv_caa015.Width = 94; + this.gv_caa015.OptionsColumn.AllowEdit = false; + this.gv_caa015.VisibleIndex = 0; + + // + //lb_caa013 + // + this.lb_caa013.Location = new System.Drawing.Point(520, 84); + this.lb_caa013.Name = "lb_caa013"; + this.lb_caa013.Size = new System.Drawing.Size(150, 21); + this.lb_caa013.TabIndex = 235; + this.lb_caa013.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa013.Text = "BOM鐗堟 "; + // + //txt_caa013 + // + this.txt_caa013.Location = new System.Drawing.Point(580, 84); + this.txt_caa013.Name = "txt_caa013"; + this.txt_caa013.Size = new System.Drawing.Size(150, 21); + this.txt_caa013.TabIndex = 235; + this.txt_caa013.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa013 + // + this.gv_caa013.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa013.AppearanceCell.Options.UseFont = true; + this.gv_caa013.FieldName = "caa013"; + this.gv_caa013.Caption = "BOM鐗堟 "; + this.gv_caa013.Tag = "query_a.CAA013"; + this.gv_caa013.MinWidth = 50; + this.gv_caa013.Visible = true; + this.gv_caa013.Width = 94; + this.gv_caa013.OptionsColumn.AllowEdit = false; + this.gv_caa013.VisibleIndex = 0; + + // + //lb_caa012 + // + this.lb_caa012.Location = new System.Drawing.Point(270, 84); + this.lb_caa012.Name = "lb_caa012"; + this.lb_caa012.Size = new System.Drawing.Size(150, 21); + this.lb_caa012.TabIndex = 231; + this.lb_caa012.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa012.Text = "宸ュ崟鏁伴噺 "; + // + //txt_caa012 + // + this.txt_caa012.Location = new System.Drawing.Point(330, 84); + this.txt_caa012.Name = "txt_caa012"; + this.txt_caa012.Size = new System.Drawing.Size(150, 21); + this.txt_caa012.TabIndex = 231; + this.txt_caa012.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa012 + // + this.gv_caa012.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa012.AppearanceCell.Options.UseFont = true; + this.gv_caa012.FieldName = "caa012"; + this.gv_caa012.Caption = "宸ュ崟鏁伴噺 "; + this.gv_caa012.Tag = "query_a.CAA012"; + this.gv_caa012.MinWidth = 50; + this.gv_caa012.Visible = true; + this.gv_caa012.Width = 94; + this.gv_caa012.OptionsColumn.AllowEdit = false; + this.gv_caa012.VisibleIndex = 0; + + // + //lb_caa011 + // + this.lb_caa011.Location = new System.Drawing.Point(20, 84); + this.lb_caa011.Name = "lb_caa011"; + this.lb_caa011.Size = new System.Drawing.Size(150, 21); + this.lb_caa011.TabIndex = 228; + this.lb_caa011.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa011.Text = "棰勮瀹屽伐鏃堕棿 "; + // + //txt_caa011 + // + this.txt_caa011.Location = new System.Drawing.Point(80, 84); + this.txt_caa011.Name = "txt_caa011"; + this.txt_caa011.Size = new System.Drawing.Size(150, 21); + this.txt_caa011.TabIndex = 228; + this.txt_caa011.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa011 + // + this.gv_caa011.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa011.AppearanceCell.Options.UseFont = true; + this.gv_caa011.FieldName = "caa011"; + this.gv_caa011.Caption = "棰勮瀹屽伐鏃堕棿 "; + this.gv_caa011.Tag = "query_a.CAA011"; + this.gv_caa011.MinWidth = 50; + this.gv_caa011.Visible = true; + this.gv_caa011.Width = 94; + this.gv_caa011.OptionsColumn.AllowEdit = false; + this.gv_caa011.VisibleIndex = 0; + + // + //lb_caa010 + // + this.lb_caa010.Location = new System.Drawing.Point(770, 52); + this.lb_caa010.Name = "lb_caa010"; + this.lb_caa010.Size = new System.Drawing.Size(150, 21); + this.lb_caa010.TabIndex = 226; + this.lb_caa010.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa010.Text = "棰勮寮�宸ユ椂闂� "; + // + //txt_caa010 + // + this.txt_caa010.Location = new System.Drawing.Point(830, 52); + this.txt_caa010.Name = "txt_caa010"; + this.txt_caa010.Size = new System.Drawing.Size(150, 21); + this.txt_caa010.TabIndex = 226; + this.txt_caa010.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa010 + // + this.gv_caa010.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa010.AppearanceCell.Options.UseFont = true; + this.gv_caa010.FieldName = "caa010"; + this.gv_caa010.Caption = "棰勮寮�宸ユ椂闂� "; + this.gv_caa010.Tag = "query_a.CAA010"; + this.gv_caa010.MinWidth = 50; + this.gv_caa010.Visible = true; + this.gv_caa010.Width = 94; + this.gv_caa010.OptionsColumn.AllowEdit = false; + this.gv_caa010.VisibleIndex = 0; + + // + //lb_caa009 + // + this.lb_caa009.Location = new System.Drawing.Point(520, 52); + this.lb_caa009.Name = "lb_caa009"; + this.lb_caa009.Size = new System.Drawing.Size(150, 21); + this.lb_caa009.TabIndex = 222; + this.lb_caa009.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa009.Text = "鍗曚綅 "; + // + //txt_caa009 + // + this.txt_caa009.Location = new System.Drawing.Point(580, 52); + this.txt_caa009.Name = "txt_caa009"; + this.txt_caa009.Size = new System.Drawing.Size(150, 21); + this.txt_caa009.TabIndex = 222; + this.txt_caa009.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa009 + // + this.gv_caa009.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa009.AppearanceCell.Options.UseFont = true; + this.gv_caa009.FieldName = "caa009"; + this.gv_caa009.Caption = "鍗曚綅 "; + this.gv_caa009.Tag = "query_a.CAA009"; + this.gv_caa009.MinWidth = 50; + this.gv_caa009.Visible = true; + this.gv_caa009.Width = 94; + this.gv_caa009.OptionsColumn.AllowEdit = false; + this.gv_caa009.VisibleIndex = 0; + + // + //lb_caa006 + // + this.lb_caa006.Location = new System.Drawing.Point(270, 52); + this.lb_caa006.Name = "lb_caa006"; + this.lb_caa006.Size = new System.Drawing.Size(150, 21); + this.lb_caa006.TabIndex = 219; + this.lb_caa006.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa006.Text = "浜у搧缂栫爜 "; + // + //txt_caa006 + // + this.txt_caa006.Location = new System.Drawing.Point(330, 52); + this.txt_caa006.Name = "txt_caa006"; + this.txt_caa006.Size = new System.Drawing.Size(150, 21); + this.txt_caa006.TabIndex = 219; + this.txt_caa006.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa006 + // + this.gv_caa006.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa006.AppearanceCell.Options.UseFont = true; + this.gv_caa006.FieldName = "caa006"; + this.gv_caa006.Caption = "浜у搧缂栫爜 "; + this.gv_caa006.Tag = "query_a.CAA006"; + this.gv_caa006.MinWidth = 50; + this.gv_caa006.Visible = true; + this.gv_caa006.Width = 94; + this.gv_caa006.OptionsColumn.AllowEdit = false; + this.gv_caa006.VisibleIndex = 0; + + // + //lb_caa005 + // + this.lb_caa005.Location = new System.Drawing.Point(20, 52); + this.lb_caa005.Name = "lb_caa005"; + this.lb_caa005.Size = new System.Drawing.Size(150, 21); + this.lb_caa005.TabIndex = 217; + this.lb_caa005.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa005.Text = "璁″垝涓嬭揪鏃ユ湡 "; + // + //txt_caa005 + // + this.txt_caa005.Location = new System.Drawing.Point(80, 52); + this.txt_caa005.Name = "txt_caa005"; + this.txt_caa005.Size = new System.Drawing.Size(150, 21); + this.txt_caa005.TabIndex = 217; + this.txt_caa005.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa005 + // + this.gv_caa005.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa005.AppearanceCell.Options.UseFont = true; + this.gv_caa005.FieldName = "caa005"; + this.gv_caa005.Caption = "璁″垝涓嬭揪鏃ユ湡 "; + this.gv_caa005.Tag = "query_a.CAA005"; + this.gv_caa005.MinWidth = 50; + this.gv_caa005.Visible = true; + this.gv_caa005.Width = 94; + this.gv_caa005.OptionsColumn.AllowEdit = false; + this.gv_caa005.VisibleIndex = 0; + + // + //lb_caa004 + // + this.lb_caa004.Location = new System.Drawing.Point(770, 20); + this.lb_caa004.Name = "lb_caa004"; + this.lb_caa004.Size = new System.Drawing.Size(150, 21); + this.lb_caa004.TabIndex = 216; + this.lb_caa004.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa004.Text = "鍗曟嵁绫诲瀷(1銆佺洿鎺ュ叆搴�-鏅�氱敓浜� 2銆佺洿鎺ュ叆搴�-杩斿伐鐢熶骇 3銆佸伐搴忔眹鎶�-鏅�氱敓浜� 4銆佸伐搴忔眹鎶�-杩斿伐鐢熶骇) "; + // + //txt_caa004 + // + this.txt_caa004.Location = new System.Drawing.Point(830, 20); + this.txt_caa004.Name = "txt_caa004"; + this.txt_caa004.Size = new System.Drawing.Size(150, 21); + this.txt_caa004.TabIndex = 216; + this.txt_caa004.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa004 + // + this.gv_caa004.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa004.AppearanceCell.Options.UseFont = true; + this.gv_caa004.FieldName = "caa004"; + this.gv_caa004.Caption = "鍗曟嵁绫诲瀷(1銆佺洿鎺ュ叆搴�-鏅�氱敓浜� 2銆佺洿鎺ュ叆搴�-杩斿伐鐢熶骇 3銆佸伐搴忔眹鎶�-鏅�氱敓浜� 4銆佸伐搴忔眹鎶�-杩斿伐鐢熶骇) "; + this.gv_caa004.Tag = "query_a.CAA004"; + this.gv_caa004.MinWidth = 50; + this.gv_caa004.Visible = true; + this.gv_caa004.Width = 94; + this.gv_caa004.OptionsColumn.AllowEdit = false; + this.gv_caa004.VisibleIndex = 0; + + // + //lb_caa001 + // + this.lb_caa001.Location = new System.Drawing.Point(520, 20); + this.lb_caa001.Name = "lb_caa001"; + this.lb_caa001.Size = new System.Drawing.Size(150, 21); + this.lb_caa001.TabIndex = 213; + this.lb_caa001.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_caa001.Text = "鍗曟嵁缂栧彿 "; + // + //txt_caa001 + // + this.txt_caa001.Location = new System.Drawing.Point(580, 20); + this.txt_caa001.Name = "txt_caa001"; + this.txt_caa001.Size = new System.Drawing.Size(150, 21); + this.txt_caa001.TabIndex = 213; + this.txt_caa001.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_caa001 + // + this.gv_caa001.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_caa001.AppearanceCell.Options.UseFont = true; + this.gv_caa001.FieldName = "caa001"; + this.gv_caa001.Caption = "鍗曟嵁缂栧彿 "; + this.gv_caa001.Tag = "query_a.CAA001"; + this.gv_caa001.MinWidth = 50; + this.gv_caa001.Visible = true; + this.gv_caa001.Width = 94; + this.gv_caa001.OptionsColumn.AllowEdit = false; + this.gv_caa001.VisibleIndex = 0; + + // + //lb_erpid + // + this.lb_erpid.Location = new System.Drawing.Point(270, 20); + this.lb_erpid.Name = "lb_erpid"; + this.lb_erpid.Size = new System.Drawing.Size(150, 21); + this.lb_erpid.TabIndex = 211; + this.lb_erpid.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_erpid.Text = "ERPID "; + // + //txt_erpid + // + this.txt_erpid.Location = new System.Drawing.Point(330, 20); + this.txt_erpid.Name = "txt_erpid"; + this.txt_erpid.Size = new System.Drawing.Size(150, 21); + this.txt_erpid.TabIndex = 211; + this.txt_erpid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_erpid + // + this.gv_erpid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_erpid.AppearanceCell.Options.UseFont = true; + this.gv_erpid.FieldName = "erpid"; + this.gv_erpid.Caption = "ERPID "; + this.gv_erpid.Tag = "query_a.ERPID"; + this.gv_erpid.MinWidth = 50; + this.gv_erpid.Visible = true; + this.gv_erpid.Width = 94; + this.gv_erpid.OptionsColumn.AllowEdit = false; + this.gv_erpid.VisibleIndex = 0; + + // + //lb_guid + // + this.lb_guid.Location = new System.Drawing.Point(20, 20); + this.lb_guid.Name = "lb_guid"; + this.lb_guid.Size = new System.Drawing.Size(150, 21); + this.lb_guid.TabIndex = 210; + this.lb_guid.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + this.lb_guid.Text = "guid "; + // + //txt_guid + // + this.txt_guid.Location = new System.Drawing.Point(80, 20); + this.txt_guid.Name = "txt_guid"; + this.txt_guid.Size = new System.Drawing.Size(150, 21); + this.txt_guid.TabIndex = 210; + this.txt_guid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); + // + //gv_guid + // + this.gv_guid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); + this.gv_guid.AppearanceCell.Options.UseFont = true; + this.gv_guid.FieldName = "guid"; + this.gv_guid.Caption = "guid "; + this.gv_guid.Tag = "query_a.guid"; + this.gv_guid.MinWidth = 50; + this.gv_guid.Visible = true; + this.gv_guid.Width = 94; + this.gv_guid.OptionsColumn.AllowEdit = false; + this.gv_guid.VisibleIndex = 0; + + this.toolBarMenu1 = new UserControl.UcToolBarMenu(); + this.gcMain = new DevExpress.XtraGrid.GridControl(); + this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl(); + this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage(); + this.pageBar1 = new UserControls.Data.UcPageBar(); + this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage(); + this.panel1 = new System.Windows.Forms.Panel(); + this.tabMx = new DevExpress.XtraTab.XtraTabControl(); + + + this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); + this.lbGuid = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.gcMain)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tabMx)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gcMx1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gvMx1)).BeginInit(); + + + this.xtraTabControl1.SuspendLayout(); + this.xtraTabPage1.SuspendLayout(); + this.xtraTabPage2.SuspendLayout(); + this.tabMx.SuspendLayout(); + this.tabMxPage1.SuspendLayout(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // toolBarMenu1 + // + + this.toolBarMenu1.Dock = System.Windows.Forms.DockStyle.Top; + this.toolBarMenu1.isSetBtn = false; + this.toolBarMenu1.Location = new System.Drawing.Point(0, 0); + this.toolBarMenu1.Name = "toolBarMenu1"; + this.toolBarMenu1.Size = new System.Drawing.Size(1128, 80); + this.toolBarMenu1.TabIndex = 0; + // + // gcMain + // + this.gcMain.Dock = System.Windows.Forms.DockStyle.Fill; + this.gcMain.Font = new System.Drawing.Font("Tahoma", 10F); + this.gcMain.Location = new System.Drawing.Point(0, 0); + this.gcMain.MainView = this.gridView1; + this.gcMain.Name = "gcMain"; + this.gcMain.Size = new System.Drawing.Size(1126, 531); + this.gcMain.TabIndex = 1; + this.gcMain.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.gridView1}); + // + // gridView1 + // + this.gridView1.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F); + this.gridView1.Appearance.Row.Options.UseFont = true; + this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gv_guid,this.gv_erpid,this.gv_caa001,this.gv_caa004,this.gv_caa005,this.gv_caa006,this.gv_caa009,this.gv_caa010,this.gv_caa011,this.gv_caa012,this.gv_caa013,this.gv_caa015,this.gv_caa016,this.gv_caa017,this.gv_caa018,this.gv_caa019,this.gv_caa020,this.gv_caa021,this.gv_fstatus,this.gv_checkDate,this.gv_checkUser,this.gv_caa022,this.gv_caa023,this.gv_caa024,this.gv_routingId,this.gv_workShopId,this.gv_depotCode,this.gv_createDate,this.gv_workGroupId,this.gv_planId,this.gv_stockInlimith,this.gv_stockInlimitl,this.gv_mtono,this.gv_lot,this.gv_caa015Head,this.gv_createType,this.gv_srcBillType,this.gv_srcBillNo,this.gv_srcBillentryseq,this.gv_saleOrderNo,this.gv_saleOrderEntryseq,this.gv_forceCloserid,this.gv_closeType,this.gv_srcSplitBillno,this.gv_erpSczz,this.gv_erpWtzz,this.gv_mainProductNo,this.gv_mainProductQty,this.gv_customerItemNumber,this.gv_packingListNumber,this.gv_customerName,this.gv_customer,this.gv_type,this.gv_jaBs,this.gv_jaTime,this.gv_ypNum,this.gv_caa0111,this.gv_erpGyzz,this.gv_erpFlzz,this.gv_erpSlzz,this.gv_erpRkzz,this.gv_erpRkhz,this.gv_erpJjds,this.gv_erpBzds,this.gv_caa025,this.gv_fpurorderno,this.gv_fpurorderentryseq,this.gv_btbz}); + this.gridView1.GridControl = this.gcMain; + this.gridView1.IndicatorWidth = 50; + this.gridView1.Name = "gridView1"; + this.gridView1.OptionsFind.ShowSearchNavButtons = false; + this.gridView1.OptionsView.ShowAutoFilterRow = true; + this.gridView1.OptionsView.ShowGroupPanel = false; + // + // xtraTabControl1 + // + this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.xtraTabControl1.Location = new System.Drawing.Point(0, 80); + this.xtraTabControl1.Name = "xtraTabControl1"; + this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1; + this.xtraTabControl1.Size = new System.Drawing.Size(1128, 602); + this.xtraTabControl1.TabIndex = 3; + this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { + this.xtraTabPage1, + this.xtraTabPage2}); + // + // xtraTabPage1 + // + this.xtraTabPage1.Controls.Add(this.gcMain); + this.xtraTabPage1.Controls.Add(this.pageBar1); + this.xtraTabPage1.Name = "xtraTabPage1"; + this.xtraTabPage1.Size = new System.Drawing.Size(1126, 570); + this.xtraTabPage1.Text = "鏁版嵁鏌ヨ"; + // + // pageBar1 + // + this.pageBar1.CurrentPage = 1; + this.pageBar1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.pageBar1.Location = new System.Drawing.Point(0, 531); + this.pageBar1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5); + this.pageBar1.Name = "pageBar1"; + this.pageBar1.RecordCount = 0; + this.pageBar1.RowsCount = 50; + this.pageBar1.Size = new System.Drawing.Size(1126, 39); + this.pageBar1.TabIndex = 3; + this.pageBar1.TotalPages = 0; + // + // xtraTabPage2 + // + this.xtraTabPage2.Controls.Add(this.tabMx); + this.xtraTabPage2.Controls.Add(this.panel1); + + this.xtraTabPage2.Name = "xtraTabPage2"; + this.xtraTabPage2.PageEnabled = false; + this.xtraTabPage2.Size = new System.Drawing.Size(1126, 570); + this.xtraTabPage2.Text = "鏁版嵁缂栬緫"; + + // + // tabMx + // + this.tabMx.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabMx.Location = new System.Drawing.Point(0, 323); + this.tabMx.Name = "tabMx"; + this.tabMx.SelectedTabPage = this.tabMxPage1; + this.tabMx.Size = new System.Drawing.Size(1126, 247); + this.tabMx.TabIndex = 2; + this.tabMx.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { + this.tabMxPage1}); + + + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.White; + this.panel1.Controls.Add(this.labelControl11); + this.panel1.Controls.Add(this.lbGuid); + this.panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.panel1.Font = new System.Drawing.Font("Tahoma", 10F); + this.panel1.Location = new System.Drawing.Point(76, 20); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(585, 426); + this.panel1.TabIndex = 1; + // + // labelControl11 + // + this.labelControl11.Location = new System.Drawing.Point(61, 388); + this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labelControl11.Name = "labelControl11"; + this.labelControl11.Size = new System.Drawing.Size(45, 18); + this.labelControl11.TabIndex = 130; + this.labelControl11.Text = "涓婚敭锛�"; + // + // lbGuid + // + this.lbGuid.AutoSize = true; + this.lbGuid.Location = new System.Drawing.Point(112, 388); + this.lbGuid.Name = "lbGuid"; + this.lbGuid.Size = new System.Drawing.Size(0, 21); + this.lbGuid.TabIndex = 1; + // + // category1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1128, 682); + this.Controls.Add(this.xtraTabControl1); + this.Controls.Add(this.toolBarMenu1); + //BQAddControltoMContainer + this.panel1.Controls.Add(this.lb_btbz); + this.panel1.Controls.Add(this.txt_btbz); + + this.panel1.Controls.Add(this.lb_fpurorderentryseq); + this.panel1.Controls.Add(this.txt_fpurorderentryseq); + + this.panel1.Controls.Add(this.lb_fpurorderno); + this.panel1.Controls.Add(this.txt_fpurorderno); + + this.panel1.Controls.Add(this.lb_caa025); + this.panel1.Controls.Add(this.txt_caa025); + + this.panel1.Controls.Add(this.lb_erpBzds); + this.panel1.Controls.Add(this.txt_erpBzds); + + this.panel1.Controls.Add(this.lb_erpJjds); + this.panel1.Controls.Add(this.txt_erpJjds); + + this.panel1.Controls.Add(this.lb_erpRkhz); + this.panel1.Controls.Add(this.txt_erpRkhz); + + this.panel1.Controls.Add(this.lb_erpRkzz); + this.panel1.Controls.Add(this.txt_erpRkzz); + + this.panel1.Controls.Add(this.lb_erpSlzz); + this.panel1.Controls.Add(this.txt_erpSlzz); + + this.panel1.Controls.Add(this.lb_erpFlzz); + this.panel1.Controls.Add(this.txt_erpFlzz); + + this.panel1.Controls.Add(this.lb_erpGyzz); + this.panel1.Controls.Add(this.txt_erpGyzz); + + this.panel1.Controls.Add(this.lb_caa0111); + this.panel1.Controls.Add(this.txt_caa0111); + + this.panel1.Controls.Add(this.lb_ypNum); + this.panel1.Controls.Add(this.txt_ypNum); + + this.panel1.Controls.Add(this.lb_jaTime); + this.panel1.Controls.Add(this.txt_jaTime); + + this.panel1.Controls.Add(this.lb_jaBs); + this.panel1.Controls.Add(this.txt_jaBs); + + this.panel1.Controls.Add(this.lb_type); + this.panel1.Controls.Add(this.txt_type); + + this.panel1.Controls.Add(this.lb_customer); + this.panel1.Controls.Add(this.txt_customer); + + this.panel1.Controls.Add(this.lb_customerName); + this.panel1.Controls.Add(this.txt_customerName); + + this.panel1.Controls.Add(this.lb_packingListNumber); + this.panel1.Controls.Add(this.txt_packingListNumber); + + this.panel1.Controls.Add(this.lb_customerItemNumber); + this.panel1.Controls.Add(this.txt_customerItemNumber); + + this.panel1.Controls.Add(this.lb_mainProductQty); + this.panel1.Controls.Add(this.txt_mainProductQty); + + this.panel1.Controls.Add(this.lb_mainProductNo); + this.panel1.Controls.Add(this.txt_mainProductNo); + + this.panel1.Controls.Add(this.lb_erpWtzz); + this.panel1.Controls.Add(this.txt_erpWtzz); + + this.panel1.Controls.Add(this.lb_erpSczz); + this.panel1.Controls.Add(this.txt_erpSczz); + + this.panel1.Controls.Add(this.lb_srcSplitBillno); + this.panel1.Controls.Add(this.txt_srcSplitBillno); + + this.panel1.Controls.Add(this.lb_closeType); + this.panel1.Controls.Add(this.txt_closeType); + + this.panel1.Controls.Add(this.lb_forceCloserid); + this.panel1.Controls.Add(this.txt_forceCloserid); + + this.panel1.Controls.Add(this.lb_saleOrderEntryseq); + this.panel1.Controls.Add(this.txt_saleOrderEntryseq); + + this.panel1.Controls.Add(this.lb_saleOrderNo); + this.panel1.Controls.Add(this.txt_saleOrderNo); + + this.panel1.Controls.Add(this.lb_srcBillentryseq); + this.panel1.Controls.Add(this.txt_srcBillentryseq); + + this.panel1.Controls.Add(this.lb_srcBillNo); + this.panel1.Controls.Add(this.txt_srcBillNo); + + this.panel1.Controls.Add(this.lb_srcBillType); + this.panel1.Controls.Add(this.txt_srcBillType); + + this.panel1.Controls.Add(this.lb_createType); + this.panel1.Controls.Add(this.txt_createType); + + this.panel1.Controls.Add(this.lb_caa015Head); + this.panel1.Controls.Add(this.txt_caa015Head); + + this.panel1.Controls.Add(this.lb_lot); + this.panel1.Controls.Add(this.txt_lot); + + this.panel1.Controls.Add(this.lb_mtono); + this.panel1.Controls.Add(this.txt_mtono); + + this.panel1.Controls.Add(this.lb_stockInlimitl); + this.panel1.Controls.Add(this.txt_stockInlimitl); + + this.panel1.Controls.Add(this.lb_stockInlimith); + this.panel1.Controls.Add(this.txt_stockInlimith); + + this.panel1.Controls.Add(this.lb_planId); + this.panel1.Controls.Add(this.txt_planId); + + this.panel1.Controls.Add(this.lb_workGroupId); + this.panel1.Controls.Add(this.txt_workGroupId); + + this.panel1.Controls.Add(this.lb_createDate); + this.panel1.Controls.Add(this.txt_createDate); + + this.panel1.Controls.Add(this.lb_depotCode); + this.panel1.Controls.Add(this.txt_depotCode); + + this.panel1.Controls.Add(this.lb_workShopId); + this.panel1.Controls.Add(this.txt_workShopId); + + this.panel1.Controls.Add(this.lb_routingId); + this.panel1.Controls.Add(this.txt_routingId); + + this.panel1.Controls.Add(this.lb_caa024); + this.panel1.Controls.Add(this.txt_caa024); + + this.panel1.Controls.Add(this.lb_caa023); + this.panel1.Controls.Add(this.txt_caa023); + + this.panel1.Controls.Add(this.lb_caa022); + this.panel1.Controls.Add(this.txt_caa022); + + this.panel1.Controls.Add(this.lb_checkUser); + this.panel1.Controls.Add(this.txt_checkUser); + + this.panel1.Controls.Add(this.lb_checkDate); + this.panel1.Controls.Add(this.txt_checkDate); + + this.panel1.Controls.Add(this.lb_fstatus); + this.panel1.Controls.Add(this.txt_fstatus); + + this.panel1.Controls.Add(this.lb_caa021); + this.panel1.Controls.Add(this.txt_caa021); + + this.panel1.Controls.Add(this.lb_caa020); + this.panel1.Controls.Add(this.txt_caa020); + + this.panel1.Controls.Add(this.lb_caa019); + this.panel1.Controls.Add(this.txt_caa019); + + this.panel1.Controls.Add(this.lb_caa018); + this.panel1.Controls.Add(this.txt_caa018); + + this.panel1.Controls.Add(this.lb_caa017); + this.panel1.Controls.Add(this.txt_caa017); + + this.panel1.Controls.Add(this.lb_caa016); + this.panel1.Controls.Add(this.txt_caa016); + + this.panel1.Controls.Add(this.lb_caa015); + this.panel1.Controls.Add(this.txt_caa015); + + this.panel1.Controls.Add(this.lb_caa013); + this.panel1.Controls.Add(this.txt_caa013); + + this.panel1.Controls.Add(this.lb_caa012); + this.panel1.Controls.Add(this.txt_caa012); + + this.panel1.Controls.Add(this.lb_caa011); + this.panel1.Controls.Add(this.txt_caa011); + + this.panel1.Controls.Add(this.lb_caa010); + this.panel1.Controls.Add(this.txt_caa010); + + this.panel1.Controls.Add(this.lb_caa009); + this.panel1.Controls.Add(this.txt_caa009); + + this.panel1.Controls.Add(this.lb_caa006); + this.panel1.Controls.Add(this.txt_caa006); + + this.panel1.Controls.Add(this.lb_caa005); + this.panel1.Controls.Add(this.txt_caa005); + + this.panel1.Controls.Add(this.lb_caa004); + this.panel1.Controls.Add(this.txt_caa004); + + this.panel1.Controls.Add(this.lb_caa001); + this.panel1.Controls.Add(this.txt_caa001); + + this.panel1.Controls.Add(this.lb_erpid); + this.panel1.Controls.Add(this.txt_erpid); + + this.panel1.Controls.Add(this.lb_guid); + this.panel1.Controls.Add(this.txt_guid); + + this.Name = "category1"; + this.Text = ""; + ((System.ComponentModel.ISupportInitialize)(this.gcMain)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit(); + this.xtraTabControl1.ResumeLayout(false); + this.xtraTabPage1.ResumeLayout(false); + this.xtraTabPage2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.tabMx)).EndInit(); + this.tabMx.ResumeLayout(false); + this.tabMxPage1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.gcMx1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.gvMx1)).EndInit(); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.ResumeLayout(false); + } + #endregion + private UserControl.UcToolBarMenu toolBarMenu1; + private DevExpress.XtraGrid.GridControl gcMain; + private DevExpress.XtraGrid.Views.Grid.GridView gridView1; + private DevExpress.XtraTab.XtraTabControl xtraTabControl1; + private DevExpress.XtraTab.XtraTabPage xtraTabPage1; + private DevExpress.XtraTab.XtraTabPage xtraTabPage2; + private UserControls.Data.UcPageBar pageBar1; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label lbGuid; + private DevExpress.XtraEditors.LabelControl labelControl11; + private DevExpress.XtraTab.XtraTabControl tabMx; + + //BQCreateConrolObejct + private DevExpress.XtraGrid.Columns.GridColumn gvMx1materialType; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1useRate; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1mustQty; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1funitid; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1fmaterialtype; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1erpXsddh; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1freplacegroup; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1fownertypeid; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1fsaleorderno; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1parentItemName; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1mainProductQty; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1mainProduct; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1packingListNumber; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1customerItemNumber; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1scraprate; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1scrapqty; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1denominator; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1numerator; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1supplyType; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1issueType; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1depotCode; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1lot; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1mtono; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1ownerId; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1supplyOrganization; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1issuingOrganization; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1positionNo; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1eid; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1pid; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab014; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab012; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab009; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab008; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab007; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab006; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab003; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab002; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1cab001; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1erpid; + private DevExpress.XtraGrid.Columns.GridColumn gvMx1guid; + private DevExpress.XtraTab.XtraTabPage tabMxPage1; + private DevExpress.XtraGrid.GridControl gcMx1; + private DevExpress.XtraGrid.Views.Grid.GridView gvMx1; + private DevExpress.XtraEditors.LabelControl lb_btbz; + private DevExpress.XtraEditors.TextEdit txt_btbz; + private DevExpress.XtraGrid.Columns.GridColumn gv_btbz; + + private DevExpress.XtraEditors.LabelControl lb_fpurorderentryseq; + private DevExpress.XtraEditors.TextEdit txt_fpurorderentryseq; + private DevExpress.XtraGrid.Columns.GridColumn gv_fpurorderentryseq; + + private DevExpress.XtraEditors.LabelControl lb_fpurorderno; + private DevExpress.XtraEditors.TextEdit txt_fpurorderno; + private DevExpress.XtraGrid.Columns.GridColumn gv_fpurorderno; + + private DevExpress.XtraEditors.LabelControl lb_caa025; + private DevExpress.XtraEditors.TextEdit txt_caa025; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa025; + + private DevExpress.XtraEditors.LabelControl lb_erpBzds; + private DevExpress.XtraEditors.TextEdit txt_erpBzds; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpBzds; + + private DevExpress.XtraEditors.LabelControl lb_erpJjds; + private DevExpress.XtraEditors.TextEdit txt_erpJjds; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpJjds; + + private DevExpress.XtraEditors.LabelControl lb_erpRkhz; + private DevExpress.XtraEditors.TextEdit txt_erpRkhz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpRkhz; + + private DevExpress.XtraEditors.LabelControl lb_erpRkzz; + private DevExpress.XtraEditors.TextEdit txt_erpRkzz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpRkzz; + + private DevExpress.XtraEditors.LabelControl lb_erpSlzz; + private DevExpress.XtraEditors.TextEdit txt_erpSlzz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpSlzz; + + private DevExpress.XtraEditors.LabelControl lb_erpFlzz; + private DevExpress.XtraEditors.TextEdit txt_erpFlzz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpFlzz; + + private DevExpress.XtraEditors.LabelControl lb_erpGyzz; + private DevExpress.XtraEditors.TextEdit txt_erpGyzz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpGyzz; + + private DevExpress.XtraEditors.LabelControl lb_caa0111; + private DevExpress.XtraEditors.TextEdit txt_caa0111; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa0111; + + private DevExpress.XtraEditors.LabelControl lb_ypNum; + private DevExpress.XtraEditors.TextEdit txt_ypNum; + private DevExpress.XtraGrid.Columns.GridColumn gv_ypNum; + + private DevExpress.XtraEditors.LabelControl lb_jaTime; + private DevExpress.XtraEditors.TextEdit txt_jaTime; + private DevExpress.XtraGrid.Columns.GridColumn gv_jaTime; + + private DevExpress.XtraEditors.LabelControl lb_jaBs; + private DevExpress.XtraEditors.TextEdit txt_jaBs; + private DevExpress.XtraGrid.Columns.GridColumn gv_jaBs; + + private DevExpress.XtraEditors.LabelControl lb_type; + private DevExpress.XtraEditors.TextEdit txt_type; + private DevExpress.XtraGrid.Columns.GridColumn gv_type; + + private DevExpress.XtraEditors.LabelControl lb_customer; + private DevExpress.XtraEditors.TextEdit txt_customer; + private DevExpress.XtraGrid.Columns.GridColumn gv_customer; + + private DevExpress.XtraEditors.LabelControl lb_customerName; + private DevExpress.XtraEditors.TextEdit txt_customerName; + private DevExpress.XtraGrid.Columns.GridColumn gv_customerName; + + private DevExpress.XtraEditors.LabelControl lb_packingListNumber; + private DevExpress.XtraEditors.TextEdit txt_packingListNumber; + private DevExpress.XtraGrid.Columns.GridColumn gv_packingListNumber; + + private DevExpress.XtraEditors.LabelControl lb_customerItemNumber; + private DevExpress.XtraEditors.TextEdit txt_customerItemNumber; + private DevExpress.XtraGrid.Columns.GridColumn gv_customerItemNumber; + + private DevExpress.XtraEditors.LabelControl lb_mainProductQty; + private DevExpress.XtraEditors.TextEdit txt_mainProductQty; + private DevExpress.XtraGrid.Columns.GridColumn gv_mainProductQty; + + private DevExpress.XtraEditors.LabelControl lb_mainProductNo; + private DevExpress.XtraEditors.TextEdit txt_mainProductNo; + private DevExpress.XtraGrid.Columns.GridColumn gv_mainProductNo; + + private DevExpress.XtraEditors.LabelControl lb_erpWtzz; + private DevExpress.XtraEditors.TextEdit txt_erpWtzz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpWtzz; + + private DevExpress.XtraEditors.LabelControl lb_erpSczz; + private DevExpress.XtraEditors.TextEdit txt_erpSczz; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpSczz; + + private DevExpress.XtraEditors.LabelControl lb_srcSplitBillno; + private DevExpress.XtraEditors.TextEdit txt_srcSplitBillno; + private DevExpress.XtraGrid.Columns.GridColumn gv_srcSplitBillno; + + private DevExpress.XtraEditors.LabelControl lb_closeType; + private DevExpress.XtraEditors.TextEdit txt_closeType; + private DevExpress.XtraGrid.Columns.GridColumn gv_closeType; + + private DevExpress.XtraEditors.LabelControl lb_forceCloserid; + private DevExpress.XtraEditors.TextEdit txt_forceCloserid; + private DevExpress.XtraGrid.Columns.GridColumn gv_forceCloserid; + + private DevExpress.XtraEditors.LabelControl lb_saleOrderEntryseq; + private DevExpress.XtraEditors.TextEdit txt_saleOrderEntryseq; + private DevExpress.XtraGrid.Columns.GridColumn gv_saleOrderEntryseq; + + private DevExpress.XtraEditors.LabelControl lb_saleOrderNo; + private DevExpress.XtraEditors.TextEdit txt_saleOrderNo; + private DevExpress.XtraGrid.Columns.GridColumn gv_saleOrderNo; + + private DevExpress.XtraEditors.LabelControl lb_srcBillentryseq; + private DevExpress.XtraEditors.TextEdit txt_srcBillentryseq; + private DevExpress.XtraGrid.Columns.GridColumn gv_srcBillentryseq; + + private DevExpress.XtraEditors.LabelControl lb_srcBillNo; + private DevExpress.XtraEditors.TextEdit txt_srcBillNo; + private DevExpress.XtraGrid.Columns.GridColumn gv_srcBillNo; + + private DevExpress.XtraEditors.LabelControl lb_srcBillType; + private DevExpress.XtraEditors.TextEdit txt_srcBillType; + private DevExpress.XtraGrid.Columns.GridColumn gv_srcBillType; + + private DevExpress.XtraEditors.LabelControl lb_createType; + private DevExpress.XtraEditors.TextEdit txt_createType; + private DevExpress.XtraGrid.Columns.GridColumn gv_createType; + + private DevExpress.XtraEditors.LabelControl lb_caa015Head; + private DevExpress.XtraEditors.TextEdit txt_caa015Head; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa015Head; + + private DevExpress.XtraEditors.LabelControl lb_lot; + private DevExpress.XtraEditors.TextEdit txt_lot; + private DevExpress.XtraGrid.Columns.GridColumn gv_lot; + + private DevExpress.XtraEditors.LabelControl lb_mtono; + private DevExpress.XtraEditors.TextEdit txt_mtono; + private DevExpress.XtraGrid.Columns.GridColumn gv_mtono; + + private DevExpress.XtraEditors.LabelControl lb_stockInlimitl; + private DevExpress.XtraEditors.TextEdit txt_stockInlimitl; + private DevExpress.XtraGrid.Columns.GridColumn gv_stockInlimitl; + + private DevExpress.XtraEditors.LabelControl lb_stockInlimith; + private DevExpress.XtraEditors.TextEdit txt_stockInlimith; + private DevExpress.XtraGrid.Columns.GridColumn gv_stockInlimith; + + private DevExpress.XtraEditors.LabelControl lb_planId; + private DevExpress.XtraEditors.TextEdit txt_planId; + private DevExpress.XtraGrid.Columns.GridColumn gv_planId; + + private DevExpress.XtraEditors.LabelControl lb_workGroupId; + private DevExpress.XtraEditors.TextEdit txt_workGroupId; + private DevExpress.XtraGrid.Columns.GridColumn gv_workGroupId; + + private DevExpress.XtraEditors.LabelControl lb_createDate; + private DevExpress.XtraEditors.TextEdit txt_createDate; + private DevExpress.XtraGrid.Columns.GridColumn gv_createDate; + + private DevExpress.XtraEditors.LabelControl lb_depotCode; + private DevExpress.XtraEditors.TextEdit txt_depotCode; + private DevExpress.XtraGrid.Columns.GridColumn gv_depotCode; + + private DevExpress.XtraEditors.LabelControl lb_workShopId; + private DevExpress.XtraEditors.TextEdit txt_workShopId; + private DevExpress.XtraGrid.Columns.GridColumn gv_workShopId; + + private DevExpress.XtraEditors.LabelControl lb_routingId; + private DevExpress.XtraEditors.TextEdit txt_routingId; + private DevExpress.XtraGrid.Columns.GridColumn gv_routingId; + + private DevExpress.XtraEditors.LabelControl lb_caa024; + private DevExpress.XtraEditors.TextEdit txt_caa024; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa024; + + private DevExpress.XtraEditors.LabelControl lb_caa023; + private DevExpress.XtraEditors.TextEdit txt_caa023; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa023; + + private DevExpress.XtraEditors.LabelControl lb_caa022; + private DevExpress.XtraEditors.TextEdit txt_caa022; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa022; + + private DevExpress.XtraEditors.LabelControl lb_checkUser; + private DevExpress.XtraEditors.TextEdit txt_checkUser; + private DevExpress.XtraGrid.Columns.GridColumn gv_checkUser; + + private DevExpress.XtraEditors.LabelControl lb_checkDate; + private DevExpress.XtraEditors.TextEdit txt_checkDate; + private DevExpress.XtraGrid.Columns.GridColumn gv_checkDate; + + private DevExpress.XtraEditors.LabelControl lb_fstatus; + private DevExpress.XtraEditors.TextEdit txt_fstatus; + private DevExpress.XtraGrid.Columns.GridColumn gv_fstatus; + + private DevExpress.XtraEditors.LabelControl lb_caa021; + private DevExpress.XtraEditors.TextEdit txt_caa021; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa021; + + private DevExpress.XtraEditors.LabelControl lb_caa020; + private DevExpress.XtraEditors.TextEdit txt_caa020; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa020; + + private DevExpress.XtraEditors.LabelControl lb_caa019; + private DevExpress.XtraEditors.TextEdit txt_caa019; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa019; + + private DevExpress.XtraEditors.LabelControl lb_caa018; + private DevExpress.XtraEditors.TextEdit txt_caa018; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa018; + + private DevExpress.XtraEditors.LabelControl lb_caa017; + private DevExpress.XtraEditors.TextEdit txt_caa017; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa017; + + private DevExpress.XtraEditors.LabelControl lb_caa016; + private DevExpress.XtraEditors.TextEdit txt_caa016; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa016; + + private DevExpress.XtraEditors.LabelControl lb_caa015; + private DevExpress.XtraEditors.TextEdit txt_caa015; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa015; + + private DevExpress.XtraEditors.LabelControl lb_caa013; + private DevExpress.XtraEditors.TextEdit txt_caa013; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa013; + + private DevExpress.XtraEditors.LabelControl lb_caa012; + private DevExpress.XtraEditors.TextEdit txt_caa012; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa012; + + private DevExpress.XtraEditors.LabelControl lb_caa011; + private DevExpress.XtraEditors.TextEdit txt_caa011; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa011; + + private DevExpress.XtraEditors.LabelControl lb_caa010; + private DevExpress.XtraEditors.TextEdit txt_caa010; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa010; + + private DevExpress.XtraEditors.LabelControl lb_caa009; + private DevExpress.XtraEditors.TextEdit txt_caa009; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa009; + + private DevExpress.XtraEditors.LabelControl lb_caa006; + private DevExpress.XtraEditors.TextEdit txt_caa006; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa006; + + private DevExpress.XtraEditors.LabelControl lb_caa005; + private DevExpress.XtraEditors.TextEdit txt_caa005; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa005; + + private DevExpress.XtraEditors.LabelControl lb_caa004; + private DevExpress.XtraEditors.TextEdit txt_caa004; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa004; + + private DevExpress.XtraEditors.LabelControl lb_caa001; + private DevExpress.XtraEditors.TextEdit txt_caa001; + private DevExpress.XtraGrid.Columns.GridColumn gv_caa001; + + private DevExpress.XtraEditors.LabelControl lb_erpid; + private DevExpress.XtraEditors.TextEdit txt_erpid; + private DevExpress.XtraGrid.Columns.GridColumn gv_erpid; + + private DevExpress.XtraEditors.LabelControl lb_guid; + private DevExpress.XtraEditors.TextEdit txt_guid; + private DevExpress.XtraGrid.Columns.GridColumn gv_guid; + + } +} \ No newline at end of file diff --git a/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.cs b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.cs new file mode 100644 index 0000000..8d95528 --- /dev/null +++ b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.cs @@ -0,0 +1,305 @@ +using DevExpress.XtraGrid.Views.Grid; +using DevExpress.XtraGrid.Views.Grid.ViewInfo; +using Gs.DevApp.Entity; +using Gs.DevApp.ToolBox; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Data; +using System.Drawing; +using System.Windows.Forms; + +namespace Gs.DevApp.DevFrm +{ + public partial class Frm_Womcaa : DevExpress.XtraEditors.XtraForm + { + string _webServiceName = "WomcaaManager/"; + List<FilterEntity> _filterList = new List<FilterEntity>(); + public Frm_Womcaa() + { + InitializeComponent(); + this.toolBarMenu1.btnAddClick += ToolBarMenu1_btnAddClick; + this.toolBarMenu1.btnEdtClick += ToolBarMenu1_btnEdtClick; + this.toolBarMenu1.btnSaveClick += ToolBarMenu1_btnSaveClick; + this.toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick; + this.toolBarMenu1.btnDelClick += ToolBarMenu1_btnDelClick1; + this.toolBarMenu1.btnEscClick += ToolBarMenu1_btnEscClick; + this.toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick; + gcMain.MouseDoubleClick += GcMain_MouseDoubleClick; + getPageList(1, UtilityHelper.GetPageSize()); + pageBar1.PagerEvent += PageBar1_PagerEvent; + gridView1.CustomDrawRowIndicator += (s, e) => + { + if (e.Info.IsRowIndicator && e.RowHandle >= 0) + { + e.Info.DisplayText = (e.RowHandle + 1).ToString(); + } + }; + gridView1.CustomDrawEmptyForeground += (s, e) => + { + string str = "鏆傛湭鏌ユ壘鍒板尮閰嶇殑鏁版嵁!"; + Font f = new Font("寰蒋闆呴粦", 16); + Rectangle r = new Rectangle(gridView1.GridControl.Width / 2 - 100, e.Bounds.Top + 45, e.Bounds.Right - 5, e.Bounds.Height - 5); + e.Graphics.DrawString(str, f, Brushes.Gray, r); + }; + } + + /// <summary> + /// 鍙屽嚮浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void GcMain_MouseDoubleClick(object sender, MouseEventArgs e) + { + string rowGuid = Gs.DevApp.ToolBox.UtilityHelper.GetCurrentDoubleRow(gridView1, e, "guid"); + if (!string.IsNullOrEmpty(rowGuid)) + getModel(rowGuid, false, 999); + } + /// <summary> + /// 鍒嗛〉浜嬩欢 + /// </summary> + /// <param name="curPage"></param> + /// <param name="pageSize"></param> + private void PageBar1_PagerEvent(int curPage, int pageSize) + { + getPageList(curPage, pageSize); + } + /// <summary> + /// 鏌ヨ浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnQueryClick(object sender, EventArgs e) + { + Gs.DevApp.UserControl.ShowFilter frm = new Gs.DevApp.UserControl.ShowFilter(gridView1.Columns, _filterList); + frm.UpdateParent += Frm_UpdateParent; + frm.ShowDialog(); + } + /// <summary> + /// 鏌ヨ鍥炶皟 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void Frm_UpdateParent(object sender, UpdateParentEventArgs e) + { + _filterList = e.FilterList; + getPageList(1, pageBar1.RowsCount); + } + + /// <summary> + /// 鍙栨秷浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnEscClick(object sender, EventArgs e) + { + UtilityHelper.JumpToTab(xtraTabControl1, 0); + } + + /// <summary> + /// 鍒犻櫎浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnDelClick1(object sender, EventArgs e) + { + string rowGuid = "", rowName = ""; + // (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_billNo, gridView1); + if (string.IsNullOrEmpty(rowGuid)) + { + ToolBox.MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎿嶄綔鐨勮锛�"); + return; + } + if (!MsgHelper.AskQuestion("浣犻�夋嫨浜嗐��" + rowName + "銆戯紝纭畾鍒犻櫎鍚楋紵")) + return; + List<dynamic> lst = new List<dynamic>(); + lst.Add(rowGuid); + var _obj = lst; + try + { + string strJson = UtilityHelper.HttpPost("", _webServiceName + "DeleteModel", JsonConvert.SerializeObject(_obj)); + ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); + if (_rtn.rtnCode > 0) + { + UtilityHelper.JumpToTab(xtraTabControl1, 0); + getPageList(1, UtilityHelper.GetPageSize()); + } + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + _rtn.rtnMsg); + } + catch (Exception ex) + { + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + ex.Message); + } + } + + /// <summary> + /// 鍒锋柊浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnLoadClick(object sender, EventArgs e) + { + if (xtraTabControl1.SelectedTabPageIndex == 1) + getModel(lbGuid.Text.Trim(), false, 999); + else + getPageList(1, UtilityHelper.GetPageSize()); + } + /// <summary> + /// 淇敼浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnEdtClick(object sender, EventArgs e) + { + string rowGuid = "", rowName = ""; + // (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_billNo, gridView1); + if (string.IsNullOrEmpty(rowGuid)) + { + ToolBox.MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎿嶄綔鐨勮锛�"); + return; + } + getModel(rowGuid, true, 1); + } + /// <summary> + /// 鏂板浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnAddClick(object sender, EventArgs e) + { + UtilityHelper.JumpToTab(xtraTabControl1, 1); + lbGuid.Text = ""; + List<DevExpress.XtraGrid.Views.Grid.GridView> gridViews = new List<DevExpress.XtraGrid.Views.Grid.GridView>(); + gridViews.Add(gvMx1); + UtilityHelper.CleanValueByControl(this.panel1.Controls, true, gridViews); + Gs.DevApp.ToolBox.UtilityHelper.SetDefaultTable(gcMx1, gvMx1); + } + /// <summary> + /// 淇濆瓨浜嬩欢 + /// </summary> + /// <param name="sender"></param> + /// <param name="e"></param> + private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e) + { + toolBarMenu1.isSetBtn = false; + //if (string.IsNullOrEmpty(txt_account.Text.Trim())) + { + Gs.DevApp.ToolBox.MsgHelper.Warning("鐧诲綍璐﹀彿涓嶈兘涓虹┖锛�"); + // txt_account.Focus(); + return; + } + var _obj = new + { + guid =UtilityHelper.ToGuid( lbGuid.Text.Trim()), //涓诲缓 + }; + try + { + string strJson = UtilityHelper.HttpPost("", _webServiceName + "EditModel", JsonConvert.SerializeObject(_obj)); + ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + _rtn.rtnMsg); + if (_rtn.rtnCode > 0) + { + lbGuid.Text = _rtn.rtnData; + toolBarMenu1.isSetBtn = true; + UtilityHelper.ChangeEnableByControl(this.panel1.Controls, false); + } + } + catch (Exception ex) + { + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + ex.Message); + } + } + + /// <summary> + /// + /// </summary> + /// <param name="curPage">绗嚑椤�</param> + /// <param name="pageSize">姣忛〉鍑犳潯</param> + private void getPageList(int curPage, int pageSize) + { + System.Text.StringBuilder _sbSqlWhere = new System.Text.StringBuilder(); + foreach (FilterEntity itm in _filterList) + { + _sbSqlWhere.Append(" and " + itm.fileId + itm.fileOper + "'" + itm.fileValue + "'"); + } + PageQueryModel pgq = new PageQueryModel(curPage, pageSize, "create_date", "asc", "", _sbSqlWhere.ToString()); + string json = JsonConvert.SerializeObject(pgq); + try + { + string strReturn = UtilityHelper.HttpPost("", _webServiceName + "GetListPage", json); + ReturnModel<PageListModel> dd = UtilityHelper.ReturnToTablePage(strReturn); + if (dd.rtnCode > 0) + { + DataTable dt = dd.rtnData.list; + gcMain.BindingContext = new BindingContext(); + gcMain.DataSource = dt; + gcMain.ForceInitialize(); + int dddd = dd.rtnData.pages;//鎬婚〉 + pageBar1.TotalPages = dddd; + pageBar1.RecordCount = dd.rtnData.total;//璁板綍鎬绘暟 + pageBar1.CurrentPage = curPage;//褰撳墠椤� + pageBar1.RowsCount = pageSize;//姣忛〉鏄剧ず + pageBar1.setTxt(); + } + else + { + ToolBox.MsgHelper.ShowError("鎻愮ず锛�" + dd.rtnMsg); + } + } + catch (Exception ex) + { + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + ex.Message); + } + } + private void getModel(string strGuid, bool isEdit, int tabIdx) + { + if (string.IsNullOrEmpty(strGuid)) + { + ToolBox.MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎿嶄綔鐨勮锛�"); + return; + } + UtilityHelper.JumpToTab(xtraTabControl1, tabIdx); + var _obj = new + { + guid = strGuid,//涓诲缓 + }; + try + { + string strJson = UtilityHelper.HttpPost("", _webServiceName +"GetModel", JsonConvert.SerializeObject(_obj)); + ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); + if (_rtn.rtnCode > 0) + { + dynamic dy = _rtn.rtnData; + lbGuid.Text = strGuid; + List<DevExpress.XtraGrid.Views.Grid.GridView> gvList = new List<DevExpress.XtraGrid.Views.Grid.GridView>(); + gvList.Add(gvMx1); + UtilityHelper.SetValueByObj(this.panel1.Controls, dy, isEdit, gvList); + JObject _job = JObject.Parse(strJson); + JArray array = new JArray(); + foreach (var a in _job["rtnData"]["list"]) + { + array.Add(a); + } + DataTable dt = JsonConvert.DeserializeObject<DataTable>(array.ToString()); + if (dt.Rows.Count > 0) + { + gcMx1.BindingContext = new BindingContext(); + gcMx1.DataSource = dt; + gcMx1.ForceInitialize(); + } + else + { + Gs.DevApp.ToolBox.UtilityHelper.SetDefaultTable(gcMx1, gvMx1); + } + } + else + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + _rtn.rtnMsg); + } + catch (Exception ex) + { + ToolBox.MsgHelper.Warning("鎻愮ず锛�" + ex.Message); + } + } + } +} \ No newline at end of file diff --git a/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.resx b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.resx new file mode 100644 index 0000000..d58980a --- /dev/null +++ b/DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womcaa.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file diff --git a/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemIns.Designer.cs b/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemIns.Designer.cs index afd9cfc..cd582a9 100644 --- a/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemIns.Designer.cs +++ b/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemIns.Designer.cs @@ -437,7 +437,7 @@ this.gvMx1lineK3id.Name = "gvMx1lineK3id"; this.gvMx1lineK3id.Tag = "query_a.LINE_K3ID"; this.gvMx1lineK3id.Visible = true; - this.gvMx1lineK3id.VisibleIndex = 58; + this.gvMx1lineK3id.VisibleIndex = 16; this.gvMx1lineK3id.Width = 94; // // gvMx1ebelnK3id @@ -450,7 +450,7 @@ this.gvMx1ebelnK3id.Name = "gvMx1ebelnK3id"; this.gvMx1ebelnK3id.Tag = "query_a.EBELN_K3ID"; this.gvMx1ebelnK3id.Visible = true; - this.gvMx1ebelnK3id.VisibleIndex = 57; + this.gvMx1ebelnK3id.VisibleIndex = 15; this.gvMx1ebelnK3id.Width = 94; // // gvMx1rbillNo @@ -463,7 +463,7 @@ this.gvMx1rbillNo.Name = "gvMx1rbillNo"; this.gvMx1rbillNo.Tag = "query_a.RBILL_NO"; this.gvMx1rbillNo.Visible = true; - this.gvMx1rbillNo.VisibleIndex = 14; + this.gvMx1rbillNo.VisibleIndex = 11; this.gvMx1rbillNo.Width = 94; // // gvMx1workLine @@ -476,7 +476,7 @@ this.gvMx1workLine.Name = "gvMx1workLine"; this.gvMx1workLine.Tag = "query_a.WORK_LINE"; this.gvMx1workLine.Visible = true; - this.gvMx1workLine.VisibleIndex = 53; + this.gvMx1workLine.VisibleIndex = 14; this.gvMx1workLine.Width = 94; // // gvMx1urgentFlag @@ -502,7 +502,7 @@ this.gvMx1workNo.Name = "gvMx1workNo"; this.gvMx1workNo.Tag = "query_a.WORK_NO"; this.gvMx1workNo.Visible = true; - this.gvMx1workNo.VisibleIndex = 12; + this.gvMx1workNo.VisibleIndex = 10; this.gvMx1workNo.Width = 94; // // gvMx1vgbel @@ -515,7 +515,7 @@ this.gvMx1vgbel.Name = "gvMx1vgbel"; this.gvMx1vgbel.Tag = "query_a.VGBEL"; this.gvMx1vgbel.Visible = true; - this.gvMx1vgbel.VisibleIndex = 46; + this.gvMx1vgbel.VisibleIndex = 13; this.gvMx1vgbel.Width = 94; // // gvMx1unit @@ -528,7 +528,7 @@ this.gvMx1unit.Name = "gvMx1unit"; this.gvMx1unit.Tag = "query_a.UNIT"; this.gvMx1unit.Visible = true; - this.gvMx1unit.VisibleIndex = 10; + this.gvMx1unit.VisibleIndex = 9; this.gvMx1unit.Width = 94; // // gvMx1itemSname @@ -541,7 +541,7 @@ this.gvMx1itemSname.Name = "gvMx1itemSname"; this.gvMx1itemSname.Tag = "query_a.ITEM_SNAME"; this.gvMx1itemSname.Visible = true; - this.gvMx1itemSname.VisibleIndex = 9; + this.gvMx1itemSname.VisibleIndex = 8; this.gvMx1itemSname.Width = 94; // // gvMx1depotSectionCode @@ -554,7 +554,7 @@ this.gvMx1depotSectionCode.Name = "gvMx1depotSectionCode"; this.gvMx1depotSectionCode.Tag = "query_a.DEPOT_SECTION_CODE"; this.gvMx1depotSectionCode.Visible = true; - this.gvMx1depotSectionCode.VisibleIndex = 8; + this.gvMx1depotSectionCode.VisibleIndex = 7; this.gvMx1depotSectionCode.Width = 94; // // gvMx1depotCode @@ -567,7 +567,7 @@ this.gvMx1depotCode.Name = "gvMx1depotCode"; this.gvMx1depotCode.Tag = "query_a.DEPOT_CODE"; this.gvMx1depotCode.Visible = true; - this.gvMx1depotCode.VisibleIndex = 21; + this.gvMx1depotCode.VisibleIndex = 12; this.gvMx1depotCode.Width = 94; // // gvMx1itemNo @@ -632,7 +632,7 @@ this.gvMx1itemInId.Name = "gvMx1itemInId"; this.gvMx1itemInId.Tag = "query_a.ITEM_IN_ID"; this.gvMx1itemInId.Visible = true; - this.gvMx1itemInId.VisibleIndex = 1; + this.gvMx1itemInId.VisibleIndex = 2; this.gvMx1itemInId.Width = 94; // // gvMx1guid @@ -866,7 +866,7 @@ // // toolBarMenu1 // - this.toolBarMenu1.chkParameter = null; + this.toolBarMenu1.chkParameter = "0,0,0,0,000prc_cgrk_chk"; this.toolBarMenu1.Dock = System.Windows.Forms.DockStyle.Top; this.toolBarMenu1.guidKey = null; this.toolBarMenu1.isSetBtn = false; diff --git a/DevApp/Gs.DevApp/Gs.DevApp.csproj b/DevApp/Gs.DevApp/Gs.DevApp.csproj index a9325f9..5ccfa81 100644 --- a/DevApp/Gs.DevApp/Gs.DevApp.csproj +++ b/DevApp/Gs.DevApp/Gs.DevApp.csproj @@ -420,6 +420,12 @@ <Compile Include="DevFrm\Warehouse\Models\VArrivalBarcode.cs" /> <Compile Include="DevFrm\Warehouse\Models\VArrivalBarcodeItem.cs" /> <Compile Include="DevFrm\Warehouse\Models\VArrivalBarcodeItem3.cs" /> + <Compile Include="DevFrm\WOM\Frm_Womcaa.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="DevFrm\WOM\Frm_Womcaa.Designer.cs"> + <DependentUpon>Frm_Womcaa.cs</DependentUpon> + </Compile> <Compile Include="Entity\LoginInfoModel.cs" /> <Compile Include="Entity\PageQueryModel.cs" /> <Compile Include="Entity\ReturnModel.cs" /> @@ -649,6 +655,9 @@ <EmbeddedResource Include="DevFrm\Warehouse\Frm_MesRohIn.resx"> <DependentUpon>Frm_MesRohIn.cs</DependentUpon> </EmbeddedResource> + <EmbeddedResource Include="DevFrm\WOM\Frm_Womcaa.resx"> + <DependentUpon>Frm_Womcaa.cs</DependentUpon> + </EmbeddedResource> <EmbeddedResource Include="Properties\licenses.licx" /> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> @@ -720,6 +729,7 @@ </ItemGroup> <ItemGroup> <Content Include="logo_ico.ico" /> + <None Include="Resources\wordwrap_32x32.png" /> <None Include="Resources\wraptext2_16x16.png" /> <None Include="Resources\wraptext2_32x32.png" /> <None Include="Resources\viewmergeddata_16x16.png" /> @@ -848,6 +858,10 @@ <None Include="Resources\printlayoutview_16x16.png" /> <None Include="Resources\download_16x16.png" /> <None Include="Resources\download_16x161.png" /> + <None Include="Resources\ico_check.png" /> + <None Include="Resources\ico_noCheck.png" /> + <None Include="Resources\copymodeldifferences_32x32.png" /> + <None Include="Resources\add_32x32.png" /> <Content Include="Resources\user_16x16.png" /> </ItemGroup> <ItemGroup /> diff --git a/DevApp/Gs.DevApp/Properties/Resources.Designer.cs b/DevApp/Gs.DevApp/Properties/Resources.Designer.cs index 31d37cb..89faeda 100644 --- a/DevApp/Gs.DevApp/Properties/Resources.Designer.cs +++ b/DevApp/Gs.DevApp/Properties/Resources.Designer.cs @@ -103,6 +103,16 @@ /// <summary> /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� /// </summary> + internal static System.Drawing.Bitmap add_32x32 { + get { + object obj = ResourceManager.GetObject("add_32x32", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� + /// </summary> internal static System.Drawing.Bitmap addcalculatedfield_16x16 { get { object obj = ResourceManager.GetObject("addcalculatedfield_16x16", resourceCulture); @@ -456,6 +466,16 @@ internal static System.Drawing.Bitmap converttorange_32x321 { get { object obj = ResourceManager.GetObject("converttorange_32x321", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� + /// </summary> + internal static System.Drawing.Bitmap copymodeldifferences_32x32 { + get { + object obj = ResourceManager.GetObject("copymodeldifferences_32x32", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -846,6 +866,26 @@ internal static System.Drawing.Bitmap groupbyresource_32x32 { get { object obj = ResourceManager.GetObject("groupbyresource_32x32", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� + /// </summary> + internal static System.Drawing.Bitmap ico_check { + get { + object obj = ResourceManager.GetObject("ico_check", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� + /// </summary> + internal static System.Drawing.Bitmap ico_noCheck { + get { + object obj = ResourceManager.GetObject("ico_noCheck", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -1483,6 +1523,16 @@ /// <summary> /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� /// </summary> + internal static System.Drawing.Bitmap wordwrap_32x32 { + get { + object obj = ResourceManager.GetObject("wordwrap_32x32", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// 鏌ユ壘 System.Drawing.Bitmap 绫诲瀷鐨勬湰鍦板寲璧勬簮銆� + /// </summary> internal static System.Drawing.Bitmap wraptext2_16x16 { get { object obj = ResourceManager.GetObject("wraptext2_16x16", resourceCulture); diff --git a/DevApp/Gs.DevApp/Properties/Resources.resx b/DevApp/Gs.DevApp/Properties/Resources.resx index bad6e65..08ef2d0 100644 --- a/DevApp/Gs.DevApp/Properties/Resources.resx +++ b/DevApp/Gs.DevApp/Properties/Resources.resx @@ -121,6 +121,11 @@ <data name="refresh_32x321" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\refresh_32x321.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="logo_png_black" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\logo_png_black.png;System.Drawing.Bitmap, + System.Drawing, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="usergroup_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\usergroup_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, @@ -284,6 +289,11 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="newitem_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\newitem_16x16.png;System.Drawing.Bitmap, + System.Drawing, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="checkbox2_16x161" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\checkbox2_16x161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> @@ -381,10 +391,8 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="convert_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\convert_32x32.png;System.Drawing.Bitmap, - System.Drawing, Version=4.0.0.0, Culture=neutral, - PublicKeyToken=b03f5f7f11d50a3a</value> + <data name="copymodeldifferences_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\copymodeldifferences_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> <data name="removegroupfooter_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\removegroupfooter_16x16.png;System.Drawing.Bitmap, @@ -419,6 +427,9 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="download_16x161" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\download_16x161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="find_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\find_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, @@ -439,6 +450,9 @@ <value>..\Resources\task_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ico_check" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ico_check.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> <data name="3dcylinder_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\3dcylinder_32x32.png;System.Drawing.Bitmap, @@ -622,6 +636,9 @@ <data name="checkbuttons_32x321" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\checkbuttons_32x321.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="wordwrap_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\wordwrap_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="bouser_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\bouser_16x16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, @@ -673,17 +690,17 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="dropandhighlowlines_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\dropandhighlowlines_32x32.png;System.Drawing.Bitmap, - System.Drawing, Version=4.0.0.0, Culture=neutral, - PublicKeyToken=b03f5f7f11d50a3a</value> - </data> <data name="login_bg6" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\login_bg6.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> <data name="checkbox2_32x321" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\checkbox2_32x321.png;System.Drawing.Bitmap, + System.Drawing, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="convert_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\convert_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> @@ -710,10 +727,8 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="logo_png_black" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\logo_png_black.png;System.Drawing.Bitmap, - System.Drawing, Version=4.0.0.0, Culture=neutral, - PublicKeyToken=b03f5f7f11d50a3a</value> + <data name="ico_noCheck" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ico_noCheck.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> <data name="insertdatafield_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\insertdatafield_16x16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> @@ -738,8 +753,8 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="newitem_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\newitem_16x16.png;System.Drawing.Bitmap, + <data name="dropandhighlowlines_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\dropandhighlowlines_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> @@ -751,7 +766,7 @@ System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="download_16x161" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\download_16x161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + <data name="add_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\add_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> </root> \ No newline at end of file diff --git a/DevApp/Gs.DevApp/Resources/add_32x32.png b/DevApp/Gs.DevApp/Resources/add_32x32.png new file mode 100644 index 0000000..bbac77a --- /dev/null +++ b/DevApp/Gs.DevApp/Resources/add_32x32.png Binary files differ diff --git a/DevApp/Gs.DevApp/Resources/copymodeldifferences_32x32.png b/DevApp/Gs.DevApp/Resources/copymodeldifferences_32x32.png new file mode 100644 index 0000000..3df34a6 --- /dev/null +++ b/DevApp/Gs.DevApp/Resources/copymodeldifferences_32x32.png Binary files differ diff --git a/DevApp/Gs.DevApp/Resources/ico_check.png b/DevApp/Gs.DevApp/Resources/ico_check.png new file mode 100644 index 0000000..1d7aa43 --- /dev/null +++ b/DevApp/Gs.DevApp/Resources/ico_check.png Binary files differ diff --git a/DevApp/Gs.DevApp/Resources/ico_noCheck.png b/DevApp/Gs.DevApp/Resources/ico_noCheck.png new file mode 100644 index 0000000..77d087a --- /dev/null +++ b/DevApp/Gs.DevApp/Resources/ico_noCheck.png Binary files differ diff --git a/DevApp/Gs.DevApp/Resources/wordwrap_32x32.png b/DevApp/Gs.DevApp/Resources/wordwrap_32x32.png new file mode 100644 index 0000000..0d1246d --- /dev/null +++ b/DevApp/Gs.DevApp/Resources/wordwrap_32x32.png Binary files differ diff --git a/DevApp/Gs.DevApp/ToolBox/MsgHelper.cs b/DevApp/Gs.DevApp/ToolBox/MsgHelper.cs index 7e42e87..fdc4ded 100644 --- a/DevApp/Gs.DevApp/ToolBox/MsgHelper.cs +++ b/DevApp/Gs.DevApp/ToolBox/MsgHelper.cs @@ -19,7 +19,7 @@ r = MessageBox.Show(msg, "鎻愮ず", MessageBoxButtons.YesNo, MessageBoxIcon.Question, - MessageBoxDefaultButton.Button2); + MessageBoxDefaultButton.Button2, MessageBoxOptions.ServiceNotification); return r == DialogResult.Yes; } @@ -32,7 +32,7 @@ MessageBox.Show(msg, "璀﹀憡", MessageBoxButtons.OK, MessageBoxIcon.Hand, - MessageBoxDefaultButton.Button1); + MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification); } /// <summary> @@ -78,7 +78,7 @@ MessageBox.Show(msg, "淇℃伅", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, - MessageBoxDefaultButton.Button1); + MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification); } /// <summary> @@ -90,7 +90,7 @@ MessageBox.Show(msg, "璀﹀憡", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, - MessageBoxDefaultButton.Button1); + MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification); } } } \ No newline at end of file diff --git a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs index a02baec..23ac0f2 100644 --- a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs +++ b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs @@ -1015,6 +1015,28 @@ return ""; } + + + public static void SetCheckIco(object s, PictureBox btnChkIco, Form fm,string icoName="") + { + GridView dgv = s as GridView; + if (dgv != null) { + if (dgv.GetSelectedRows() != null) { + var selectedRow = dgv.GetSelectedRows()[0]; // 鑾峰彇绗竴涓�変腑琛岀殑绱㈠紩 + if (selectedRow >= 0) { + var checkStatus = dgv.GetRowCellValue(selectedRow, "checkStatus").ToString(); // 鑾峰彇鎸囧畾鍒楃殑鍊� + btnChkIco.Text = checkStatus; + btnChkIco.Visible = true; + if (checkStatus == "1" || checkStatus.ToUpper() == true.ToString().ToUpper()) + btnChkIco.Image = global::Gs.DevApp.Properties.Resources.ico_check; + else + btnChkIco.Image = global::Gs.DevApp.Properties.Resources.ico_noCheck; + btnChkIco.Anchor = AnchorStyles.Top | AnchorStyles.Right; // 闈犲彸 + btnChkIco.Location = new Point(fm.ClientSize.Width - btnChkIco.Width - 20, 80); // 璺濈椤堕儴10鍍忕礌 + } + } + } + } } /// <summary> diff --git a/DevApp/Gs.DevApp/UserControl/UcLoading.Designer.cs b/DevApp/Gs.DevApp/UserControl/UcLoading.Designer.cs index 750de3d..90d9255 100644 --- a/DevApp/Gs.DevApp/UserControl/UcLoading.Designer.cs +++ b/DevApp/Gs.DevApp/UserControl/UcLoading.Designer.cs @@ -32,13 +32,13 @@ this.lblMessage = new DevExpress.XtraEditors.LabelControl(); this.panelControl2 = new DevExpress.XtraEditors.PanelControl(); this.lblContent = new DevExpress.XtraEditors.LabelControl(); - this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); this.progressShow = new DevExpress.XtraEditors.ProgressBarControl(); + this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit(); this.panelControl2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.progressShow.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit(); this.panelControl1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.progressShow.Properties)).BeginInit(); this.SuspendLayout(); // // lblCaption @@ -82,17 +82,6 @@ this.lblContent.TabIndex = 3; this.lblContent.Text = "Content"; // - // panelControl1 - // - this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D; - this.panelControl1.Controls.Add(this.lblCaption); - this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top; - this.panelControl1.Location = new System.Drawing.Point(0, 0); - this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); - this.panelControl1.Name = "panelControl1"; - this.panelControl1.Size = new System.Drawing.Size(498, 44); - this.panelControl1.TabIndex = 0; - // // progressShow // this.progressShow.EditValue = 1; @@ -111,6 +100,17 @@ this.progressShow.Properties.Step = 1; this.progressShow.Size = new System.Drawing.Size(457, 19); this.progressShow.TabIndex = 4; + // + // panelControl1 + // + this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D; + this.panelControl1.Controls.Add(this.lblCaption); + this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top; + this.panelControl1.Location = new System.Drawing.Point(0, 0); + this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.panelControl1.Name = "panelControl1"; + this.panelControl1.Size = new System.Drawing.Size(498, 44); + this.panelControl1.TabIndex = 0; // // UcLoading // @@ -131,10 +131,10 @@ ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit(); this.panelControl2.ResumeLayout(false); this.panelControl2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.progressShow.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit(); this.panelControl1.ResumeLayout(false); this.panelControl1.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.progressShow.Properties)).EndInit(); this.ResumeLayout(false); } diff --git a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs index a7a58ac..09c2024 100644 --- a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs +++ b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs @@ -58,6 +58,9 @@ this.btnCaiGouChk = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnCaiGouFchk = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnLog = new DevExpress.XtraBars.BarLargeButtonItem(); + this.btnJieAn = new DevExpress.XtraBars.BarLargeButtonItem(); + this.btnFjieAn = new DevExpress.XtraBars.BarLargeButtonItem(); + this.barLargeButtonItem1 = new DevExpress.XtraBars.BarLargeButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); @@ -99,9 +102,12 @@ this.btnZhiLiangFchk, this.btnCaiGouChk, this.btnCaiGouFchk, - this.btnBoHui}); + this.btnBoHui, + this.btnJieAn, + this.btnFjieAn, + this.barLargeButtonItem1}); this.barManager1.MainMenu = this.bar2; - this.barManager1.MaxItemId = 38; + this.barManager1.MaxItemId = 41; // // bar2 // @@ -134,7 +140,9 @@ new DevExpress.XtraBars.LinkPersistInfo(this.btnBoHui), new DevExpress.XtraBars.LinkPersistInfo(this.btnCaiGouChk), new DevExpress.XtraBars.LinkPersistInfo(this.btnCaiGouFchk), - new DevExpress.XtraBars.LinkPersistInfo(this.btnLog)}); + new DevExpress.XtraBars.LinkPersistInfo(this.btnLog), + new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnJieAn, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph), + new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnFjieAn, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)}); this.bar2.OptionsBar.MultiLine = true; this.bar2.OptionsBar.UseWholeRow = true; this.bar2.Text = "Main menu"; @@ -390,6 +398,29 @@ this.btnLog.Name = "btnLog"; this.btnLog.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // + // btnJieAn + // + this.btnJieAn.Caption = "缁撴"; + this.btnJieAn.Id = 38; + this.btnJieAn.ImageOptions.Image = global::Gs.DevApp.Properties.Resources.copymodeldifferences_32x32; + this.btnJieAn.Name = "btnJieAn"; + this.btnJieAn.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; + // + // btnFjieAn + // + this.btnFjieAn.Caption = "鍙嶇粨妗�"; + this.btnFjieAn.Id = 39; + this.btnFjieAn.ImageOptions.Image = global::Gs.DevApp.Properties.Resources.wordwrap_32x32; + this.btnFjieAn.Name = "btnFjieAn"; + this.btnFjieAn.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; + // + // barLargeButtonItem1 + // + this.barLargeButtonItem1.Caption = "barLargeButtonItem1"; + this.barLargeButtonItem1.Id = 40; + this.barLargeButtonItem1.ImageOptions.Image = global::Gs.DevApp.Properties.Resources.add_32x32; + this.barLargeButtonItem1.Name = "barLargeButtonItem1"; + // // barDockControlTop // this.barDockControlTop.CausesValidation = false; @@ -402,7 +433,7 @@ // this.barDockControlBottom.CausesValidation = false; this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; - this.barDockControlBottom.Location = new System.Drawing.Point(0, 70); + this.barDockControlBottom.Location = new System.Drawing.Point(0, 71); this.barDockControlBottom.Manager = this.barManager1; this.barDockControlBottom.Size = new System.Drawing.Size(1543, 0); // @@ -431,7 +462,7 @@ this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "UcToolBarMenu"; - this.Size = new System.Drawing.Size(1543, 70); + this.Size = new System.Drawing.Size(1543, 71); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -470,5 +501,8 @@ private DevExpress.XtraBars.BarDockControl barDockControlBottom; private DevExpress.XtraBars.BarDockControl barDockControlLeft; private DevExpress.XtraBars.BarDockControl barDockControlRight; + private DevExpress.XtraBars.BarLargeButtonItem btnJieAn; + private DevExpress.XtraBars.BarLargeButtonItem btnFjieAn; + private DevExpress.XtraBars.BarLargeButtonItem barLargeButtonItem1; } } diff --git a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs index 6f07343..3992d31 100644 --- a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs +++ b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs @@ -44,6 +44,8 @@ btnCaiGouChk.ItemClick += BtnCaiGouChk_ItemClick; btnCaiGouFchk.ItemClick += BtnCaiGouFchk_ItemClick; btnBoHui.ItemClick += BtnBoHui_ItemClick; + btnJieAn.ItemClick += BtnJieAn_ItemClick; + btnFjieAn.ItemClick += BtnFjieAn_ItemClick; var lst = new List<string>(); foreach (BarItem item in barManager1.Items) if (item is BarLargeButtonItem largeButtonItem) @@ -51,9 +53,7 @@ lst.Add(item.Caption); actions = lst; } - - - + /// <summary> /// 鍒濆鍖栨寜閽姸鎬� @@ -216,6 +216,21 @@ if (!MsgHelper.AskQuestion("浣犻�夋嫨浜�1鏉℃暟鎹紝纭畾瀹℃牳鍚楋紵")) return; _ckService(1.ToString()); + } + private void BtnFjieAn_ItemClick(object sender, ItemClickEventArgs e) + { + if (btnFjieAnClick != null) + btnFjieAnClick(this, e); + else + return; + } + + private void BtnJieAn_ItemClick(object sender, ItemClickEventArgs e) + { + if (btnJieAnClick != null) + btnJieAnClick(this, e); + else + return; } @@ -830,6 +845,16 @@ /// 鎶ヨ〃 /// </summary> public event EventHandler btnReportClick; + + /// <summary> + /// 缁撴 + /// </summary> + public event EventHandler btnJieAnClick; + + /// <summary> + /// 鍙嶇粨妗� + /// </summary> + public event EventHandler btnFjieAnClick; #endregion #region 鍏叡灞炴�� -- Gitblit v1.9.3