This commit is contained in:
chikyun.kim
2019-01-03 17:42:39 +09:00
parent c8410753cb
commit 306f611873
11 changed files with 1652 additions and 198 deletions

View File

@@ -661,8 +661,8 @@
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 15).Value = "*";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 16).Value = "관련프로젝트";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 17).Value = "*";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 18).Value = "적용장비";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 19).Value = "적용위치";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 18).Value = "모델\r\n공정";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 19).Value = "장비\r\n제조사";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 20).Value = "입고예정";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 21).Value = "입고일";
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 22).Value = "PO#";
@@ -802,14 +802,14 @@
this.fpSpread1_Sheet1.Columns.Get(18).CellType = textCellType13;
this.fpSpread1_Sheet1.Columns.Get(18).DataField = "asset";
this.fpSpread1_Sheet1.Columns.Get(18).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
this.fpSpread1_Sheet1.Columns.Get(18).Label = "적용장비";
this.fpSpread1_Sheet1.Columns.Get(18).Label = "모델\r\n공정";
this.fpSpread1_Sheet1.Columns.Get(18).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
this.fpSpread1_Sheet1.Columns.Get(18).Width = 35F;
this.fpSpread1_Sheet1.Columns.Get(19).DataField = "dept";
this.fpSpread1_Sheet1.Columns.Get(19).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
this.fpSpread1_Sheet1.Columns.Get(19).Label = "적용위치";
this.fpSpread1_Sheet1.Columns.Get(19).Label = "장비\r\n제조사";
this.fpSpread1_Sheet1.Columns.Get(19).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
this.fpSpread1_Sheet1.Columns.Get(19).Width = 34F;
this.fpSpread1_Sheet1.Columns.Get(19).Width = 49F;
this.fpSpread1_Sheet1.Columns.Get(20).CellType = textCellType14;
this.fpSpread1_Sheet1.Columns.Get(20).DataField = "edate";
this.fpSpread1_Sheet1.Columns.Get(20).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;

View File

@@ -77,6 +77,8 @@
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.tbAsset = new System.Windows.Forms.ComboBox();
this.tbDept = new System.Windows.Forms.ComboBox();
this.linkLabel4 = new System.Windows.Forms.LinkLabel();
this.linkLabel3 = new System.Windows.Forms.LinkLabel();
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
@@ -84,8 +86,6 @@
this.dsPurchase = new FEQ0000.dsPurchase();
this.purchaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.purchaseTableAdapter = new FEQ0000.dsPurchaseTableAdapters.PurchaseTableAdapter();
this.tbDept = new System.Windows.Forms.ComboBox();
this.tbAsset = new System.Windows.Forms.ComboBox();
processLabel = new System.Windows.Forms.Label();
receiveLabel = new System.Windows.Forms.Label();
scLabel = new System.Windows.Forms.Label();
@@ -223,12 +223,12 @@
// assetLabel
//
assetLabel.AutoSize = true;
assetLabel.Location = new System.Drawing.Point(27, 194);
assetLabel.Location = new System.Drawing.Point(24, 194);
assetLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
assetLabel.Name = "assetLabel";
assetLabel.Size = new System.Drawing.Size(69, 20);
assetLabel.Size = new System.Drawing.Size(72, 20);
assetLabel.TabIndex = 10;
assetLabel.Text = "적용장비";
assetLabel.Text = "모델,공정";
//
// poLabel
//
@@ -270,6 +270,16 @@
stateLabel.TabIndex = 0;
stateLabel.Text = "구매상태";
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(12, 228);
label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(84, 20);
label2.TabIndex = 12;
label2.Text = "장비제조사";
//
// tbSC
//
this.tbSC.Location = new System.Drawing.Point(104, 125);
@@ -648,6 +658,32 @@
this.groupBox2.TabStop = false;
this.groupBox2.Text = "추가정보";
//
// tbAsset
//
this.tbAsset.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.tbAsset.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.tbAsset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tbAsset.FormattingEnabled = true;
this.tbAsset.ImeMode = System.Windows.Forms.ImeMode.Hangul;
this.tbAsset.Location = new System.Drawing.Point(104, 191);
this.tbAsset.Margin = new System.Windows.Forms.Padding(4);
this.tbAsset.Name = "tbAsset";
this.tbAsset.Size = new System.Drawing.Size(286, 28);
this.tbAsset.TabIndex = 11;
//
// tbDept
//
this.tbDept.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.tbDept.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.tbDept.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tbDept.FormattingEnabled = true;
this.tbDept.ImeMode = System.Windows.Forms.ImeMode.Hangul;
this.tbDept.Location = new System.Drawing.Point(104, 225);
this.tbDept.Margin = new System.Windows.Forms.Padding(4);
this.tbDept.Name = "tbDept";
this.tbDept.Size = new System.Drawing.Size(286, 28);
this.tbDept.TabIndex = 13;
//
// linkLabel4
//
this.linkLabel4.AutoSize = true;
@@ -709,42 +745,6 @@
//
this.purchaseTableAdapter.ClearBeforeFill = true;
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(27, 228);
label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(69, 20);
label2.TabIndex = 12;
label2.Text = "적용위치";
//
// tbDept
//
this.tbDept.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.tbDept.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.tbDept.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tbDept.FormattingEnabled = true;
this.tbDept.ImeMode = System.Windows.Forms.ImeMode.Hangul;
this.tbDept.Location = new System.Drawing.Point(104, 225);
this.tbDept.Margin = new System.Windows.Forms.Padding(4);
this.tbDept.Name = "tbDept";
this.tbDept.Size = new System.Drawing.Size(286, 28);
this.tbDept.TabIndex = 13;
//
// tbAsset
//
this.tbAsset.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.tbAsset.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.tbAsset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tbAsset.FormattingEnabled = true;
this.tbAsset.ImeMode = System.Windows.Forms.ImeMode.Hangul;
this.tbAsset.Location = new System.Drawing.Point(104, 191);
this.tbAsset.Margin = new System.Windows.Forms.Padding(4);
this.tbAsset.Name = "tbAsset";
this.tbAsset.Size = new System.Drawing.Size(286, 28);
this.tbAsset.TabIndex = 11;
//
// fPurchase_Add
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);