|
|
@@ -31,6 +31,7 @@
|
|
|
this.headBar1 = new UAS_MES.CustomControl.HeadBar();
|
|
|
this.InOutDetailDGV = new UAS_MES.CustomControl.DataGrid_View.DataGridViewWithSerialNum();
|
|
|
this.pd_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.pd_ordercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
this.pr_detail = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
this.outqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
this.getqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
@@ -55,12 +56,12 @@
|
|
|
this.InOutDetailDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
this.InOutDetailDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
|
this.pd_prodcode,
|
|
|
+ this.pd_ordercode,
|
|
|
this.pr_detail,
|
|
|
this.outqty,
|
|
|
this.getqty,
|
|
|
this.ungetqty});
|
|
|
this.InOutDetailDGV.EnableContentClick = true;
|
|
|
- this.InOutDetailDGV.Enabled = false;
|
|
|
this.InOutDetailDGV.Location = new System.Drawing.Point(32, 37);
|
|
|
this.InOutDetailDGV.Margin = new System.Windows.Forms.Padding(2);
|
|
|
this.InOutDetailDGV.Name = "InOutDetailDGV";
|
|
|
@@ -74,30 +75,42 @@
|
|
|
this.pd_prodcode.HeaderText = "产品代码";
|
|
|
this.pd_prodcode.MinimumWidth = 120;
|
|
|
this.pd_prodcode.Name = "pd_prodcode";
|
|
|
+ this.pd_prodcode.ReadOnly = true;
|
|
|
this.pd_prodcode.Width = 120;
|
|
|
//
|
|
|
+ // pd_ordercode
|
|
|
+ //
|
|
|
+ this.pd_ordercode.DataPropertyName = "pd_ordercode";
|
|
|
+ this.pd_ordercode.HeaderText = "订单编号";
|
|
|
+ this.pd_ordercode.Name = "pd_ordercode";
|
|
|
+ this.pd_ordercode.ReadOnly = true;
|
|
|
+ //
|
|
|
// pr_detail
|
|
|
//
|
|
|
this.pr_detail.DataPropertyName = "pr_detail";
|
|
|
this.pr_detail.HeaderText = "产品名称";
|
|
|
this.pr_detail.Name = "pr_detail";
|
|
|
+ this.pr_detail.ReadOnly = true;
|
|
|
//
|
|
|
// outqty
|
|
|
//
|
|
|
this.outqty.DataPropertyName = "outqty";
|
|
|
this.outqty.HeaderText = "出货数";
|
|
|
this.outqty.Name = "outqty";
|
|
|
+ this.outqty.ReadOnly = true;
|
|
|
//
|
|
|
// getqty
|
|
|
//
|
|
|
this.getqty.DataPropertyName = "getqty";
|
|
|
this.getqty.HeaderText = "已采集数";
|
|
|
this.getqty.Name = "getqty";
|
|
|
+ this.getqty.ReadOnly = true;
|
|
|
//
|
|
|
// ungetqty
|
|
|
//
|
|
|
this.ungetqty.HeaderText = "未采集数";
|
|
|
this.ungetqty.Name = "ungetqty";
|
|
|
+ this.ungetqty.ReadOnly = true;
|
|
|
//
|
|
|
// Warehouse_ProdDetail
|
|
|
//
|
|
|
@@ -112,7 +125,7 @@
|
|
|
this.Text = "Warehouse_ProdDetail";
|
|
|
this.Load += new System.EventHandler(this.Warehouse_ProdDetail_Load);
|
|
|
((System.ComponentModel.ISupportInitialize)(this.InOutDetailDGV)).EndInit();
|
|
|
- this.ResumeLayout(false);
|
|
|
+ this.ResumeLayout(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
@@ -121,6 +134,7 @@
|
|
|
private CustomControl.HeadBar headBar1;
|
|
|
private CustomControl.DataGrid_View.DataGridViewWithSerialNum InOutDetailDGV;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn pd_prodcode;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn pd_ordercode;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn pr_detail;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn outqty;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn getqty;
|