주문내역 엑셀 업로드기능에서 공백제거 추가, 주문내역에서 품목정보 생성하는 기능 추가(관리자)
This commit is contained in:
@@ -56,7 +56,6 @@
|
||||
System.Windows.Forms.Label label14;
|
||||
System.Windows.Forms.Label label15;
|
||||
System.Windows.Forms.Label label17;
|
||||
System.Windows.Forms.Label label9;
|
||||
this.label18 = new System.Windows.Forms.Label();
|
||||
this.tbSC = new System.Windows.Forms.TextBox();
|
||||
this.tbSID = new System.Windows.Forms.TextBox();
|
||||
@@ -83,6 +82,7 @@
|
||||
this.chkExp = new System.Windows.Forms.CheckBox();
|
||||
this.btSaveAdd = new System.Windows.Forms.Button();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.tbPumIDX = new System.Windows.Forms.Button();
|
||||
this.tbStorage = new System.Windows.Forms.ComboBox();
|
||||
this.cmbRemark = new System.Windows.Forms.ComboBox();
|
||||
this.cmbCurrency = new System.Windows.Forms.ComboBox();
|
||||
@@ -117,7 +117,7 @@
|
||||
this.dsPurchase = new FEQ0000.dsPurchase();
|
||||
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.ta = new FEQ0000.dsPurchaseTableAdapters.PurchaseTableAdapter();
|
||||
this.tbPumIDX = new System.Windows.Forms.Button();
|
||||
this.lbcurrentwon = new System.Windows.Forms.Label();
|
||||
processLabel = new System.Windows.Forms.Label();
|
||||
receiveLabel = new System.Windows.Forms.Label();
|
||||
scLabel = new System.Windows.Forms.Label();
|
||||
@@ -144,7 +144,6 @@
|
||||
label14 = new System.Windows.Forms.Label();
|
||||
label15 = new System.Windows.Forms.Label();
|
||||
label17 = new System.Windows.Forms.Label();
|
||||
label9 = new System.Windows.Forms.Label();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.groupBox2.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
@@ -420,24 +419,12 @@
|
||||
label17.TabIndex = 42;
|
||||
label17.Text = "구매담당자명";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
label9.AutoSize = true;
|
||||
label9.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
label9.ForeColor = System.Drawing.Color.Blue;
|
||||
label9.Location = new System.Drawing.Point(371, 200);
|
||||
label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
||||
label9.Name = "label9";
|
||||
label9.Size = new System.Drawing.Size(99, 30);
|
||||
label9.TabIndex = 20;
|
||||
label9.Text = "해외물품은\r\n좌측 단가를 입력";
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Location = new System.Drawing.Point(277, 175);
|
||||
this.label18.Location = new System.Drawing.Point(321, 175);
|
||||
this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Size = new System.Drawing.Size(198, 20);
|
||||
this.label18.Size = new System.Drawing.Size(151, 20);
|
||||
this.label18.TabIndex = 51;
|
||||
this.label18.Text = "원";
|
||||
//
|
||||
@@ -510,8 +497,9 @@
|
||||
this.tbPumPrice.Location = new System.Drawing.Point(93, 172);
|
||||
this.tbPumPrice.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.tbPumPrice.Name = "tbPumPrice";
|
||||
this.tbPumPrice.Size = new System.Drawing.Size(178, 27);
|
||||
this.tbPumPrice.Size = new System.Drawing.Size(220, 27);
|
||||
this.tbPumPrice.TabIndex = 17;
|
||||
this.tbPumPrice.Text = "0";
|
||||
this.tbPumPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.tbPumPrice.TextChanged += new System.EventHandler(this.tbPumQty_TextChanged);
|
||||
//
|
||||
@@ -707,6 +695,7 @@
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.lbcurrentwon);
|
||||
this.groupBox1.Controls.Add(this.tbPumIDX);
|
||||
this.groupBox1.Controls.Add(this.tbStorage);
|
||||
this.groupBox1.Controls.Add(this.label18);
|
||||
@@ -720,7 +709,6 @@
|
||||
this.groupBox1.Controls.Add(this.chk1);
|
||||
this.groupBox1.Controls.Add(this.btSIDChk);
|
||||
this.groupBox1.Controls.Add(label10);
|
||||
this.groupBox1.Controls.Add(label9);
|
||||
this.groupBox1.Controls.Add(this.tbPumPriceD);
|
||||
this.groupBox1.Controls.Add(label8);
|
||||
this.groupBox1.Controls.Add(this.button3);
|
||||
@@ -760,6 +748,15 @@
|
||||
this.groupBox1.Text = "필수입력";
|
||||
this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
|
||||
//
|
||||
// tbPumIDX
|
||||
//
|
||||
this.tbPumIDX.Location = new System.Drawing.Point(410, 79);
|
||||
this.tbPumIDX.Name = "tbPumIDX";
|
||||
this.tbPumIDX.Size = new System.Drawing.Size(65, 27);
|
||||
this.tbPumIDX.TabIndex = 53;
|
||||
this.tbPumIDX.UseVisualStyleBackColor = true;
|
||||
this.tbPumIDX.Click += new System.EventHandler(this.tbPumIDX_Click);
|
||||
//
|
||||
// tbStorage
|
||||
//
|
||||
this.tbStorage.FormattingEnabled = true;
|
||||
@@ -793,11 +790,12 @@
|
||||
this.cmbCurrency.FormattingEnabled = true;
|
||||
this.cmbCurrency.Items.AddRange(new object[] {
|
||||
"USD"});
|
||||
this.cmbCurrency.Location = new System.Drawing.Point(274, 202);
|
||||
this.cmbCurrency.Location = new System.Drawing.Point(224, 203);
|
||||
this.cmbCurrency.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.cmbCurrency.Name = "cmbCurrency";
|
||||
this.cmbCurrency.Size = new System.Drawing.Size(89, 28);
|
||||
this.cmbCurrency.TabIndex = 50;
|
||||
this.cmbCurrency.SelectedIndexChanged += new System.EventHandler(this.cmbCurrency_SelectedIndexChanged);
|
||||
//
|
||||
// tbQtyReal
|
||||
//
|
||||
@@ -861,8 +859,9 @@
|
||||
this.tbPumPriceD.Location = new System.Drawing.Point(94, 203);
|
||||
this.tbPumPriceD.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.tbPumPriceD.Name = "tbPumPriceD";
|
||||
this.tbPumPriceD.Size = new System.Drawing.Size(178, 27);
|
||||
this.tbPumPriceD.Size = new System.Drawing.Size(122, 27);
|
||||
this.tbPumPriceD.TabIndex = 19;
|
||||
this.tbPumPriceD.Text = "0";
|
||||
this.tbPumPriceD.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.tbPumPriceD.TextChanged += new System.EventHandler(this.tbDolloerPrice_TextChanged);
|
||||
//
|
||||
@@ -1140,14 +1139,18 @@
|
||||
//
|
||||
this.ta.ClearBeforeFill = true;
|
||||
//
|
||||
// tbPumIDX
|
||||
// lbcurrentwon
|
||||
//
|
||||
this.tbPumIDX.Location = new System.Drawing.Point(410, 79);
|
||||
this.tbPumIDX.Name = "tbPumIDX";
|
||||
this.tbPumIDX.Size = new System.Drawing.Size(65, 27);
|
||||
this.tbPumIDX.TabIndex = 53;
|
||||
this.tbPumIDX.UseVisualStyleBackColor = true;
|
||||
this.tbPumIDX.Click += new System.EventHandler(this.tbPumIDX_Click);
|
||||
this.lbcurrentwon.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.lbcurrentwon.ForeColor = System.Drawing.Color.Blue;
|
||||
this.lbcurrentwon.Location = new System.Drawing.Point(321, 202);
|
||||
this.lbcurrentwon.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
||||
this.lbcurrentwon.Name = "lbcurrentwon";
|
||||
this.lbcurrentwon.Size = new System.Drawing.Size(153, 28);
|
||||
this.lbcurrentwon.TabIndex = 54;
|
||||
this.lbcurrentwon.Text = "통화기호를 선택하세요";
|
||||
this.lbcurrentwon.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
this.lbcurrentwon.Click += new System.EventHandler(this.lbcurrentwon_Click);
|
||||
//
|
||||
// fPurchase_Add
|
||||
//
|
||||
@@ -1242,5 +1245,6 @@
|
||||
private System.Windows.Forms.DateTimePicker dtPrdate;
|
||||
private System.Windows.Forms.CheckBox chkprdate;
|
||||
private System.Windows.Forms.Button tbPumIDX;
|
||||
private System.Windows.Forms.Label lbcurrentwon;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user