구매입력화면에서 목록 내보내기 기능 추가, 구매 목록에서 PO값을 입력하면 PR->PO 자동 전환

This commit is contained in:
chi
2024-03-20 09:21:37 +09:00
parent 7a01686f77
commit 67942e4b67
7 changed files with 785 additions and 668 deletions

View File

@@ -28,87 +28,87 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fLicenseList));
this.dsPurchase = new FED0000.EEDataSet();
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.tam = new FED0000.EEDataSetTableAdapters.TableAdapterManager();
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btAdd = new System.Windows.Forms.ToolStripButton();
this.btCopy = new System.Windows.Forms.ToolStripButton();
this.btEdit = new System.Windows.Forms.ToolStripButton();
this.btDel = new System.Windows.Forms.ToolStripButton();
this.btSave = new System.Windows.Forms.ToolStripButton();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
this.tbFind = new System.Windows.Forms.ToolStripTextBox();
this.btFind = new System.Windows.Forms.ToolStripButton();
this.cm1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.exportDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btSearch = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.label1 = new System.Windows.Forms.Label();
this.ta = new FED0000.EEDataSetTableAdapters.EETGW_LicenseTableAdapter();
this.dv1 = new arCtl.arDatagridView();
this.expireDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.versionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.MeterialNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.supplyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.qtyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.uidsDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SerialNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.remarkDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.sdateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.manuDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit();
this.bn.SuspendLayout();
this.cm1.SuspendLayout();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dv1)).BeginInit();
this.SuspendLayout();
//
// dsPurchase
//
this.dsPurchase.DataSetName = "EEDataSet";
this.dsPurchase.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// bs
//
this.bs.DataMember = "EETGW_License";
this.bs.DataSource = this.dsPurchase;
this.bs.CurrentChanged += new System.EventHandler(this.bs_CurrentChanged);
//
// tam
//
this.tam.BackupDataSetBeforeUpdate = true;
this.tam.Connection = null;
this.tam.EETGW_EducationListTableAdapter = null;
this.tam.EETGW_LicenseTableAdapter = null;
this.tam.UpdateOrder = FED0000.EEDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
//
// bn
//
this.bn.AddNewItem = null;
this.bn.BindingSource = this.bs;
this.bn.CountItem = this.bindingNavigatorCountItem;
this.bn.DeleteItem = null;
this.bn.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bn.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fLicenseList));
this.dsPurchase = new FED0000.EEDataSet();
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.tam = new FED0000.EEDataSetTableAdapters.TableAdapterManager();
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btAdd = new System.Windows.Forms.ToolStripButton();
this.btCopy = new System.Windows.Forms.ToolStripButton();
this.btEdit = new System.Windows.Forms.ToolStripButton();
this.btDel = new System.Windows.Forms.ToolStripButton();
this.btSave = new System.Windows.Forms.ToolStripButton();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
this.tbFind = new System.Windows.Forms.ToolStripTextBox();
this.btFind = new System.Windows.Forms.ToolStripButton();
this.cm1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.exportDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btSearch = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.label1 = new System.Windows.Forms.Label();
this.ta = new FED0000.EEDataSetTableAdapters.EETGW_LicenseTableAdapter();
this.dv1 = new arCtl.arDatagridView();
this.expireDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.versionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.MeterialNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.supplyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.qtyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.uidsDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SerialNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.remarkDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.sdateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.manuDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit();
this.bn.SuspendLayout();
this.cm1.SuspendLayout();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dv1)).BeginInit();
this.SuspendLayout();
//
// dsPurchase
//
this.dsPurchase.DataSetName = "EEDataSet";
this.dsPurchase.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// bs
//
this.bs.DataMember = "EETGW_License";
this.bs.DataSource = this.dsPurchase;
this.bs.CurrentChanged += new System.EventHandler(this.bs_CurrentChanged);
//
// tam
//
this.tam.BackupDataSetBeforeUpdate = true;
this.tam.Connection = null;
this.tam.EETGW_EducationListTableAdapter = null;
this.tam.EETGW_LicenseTableAdapter = null;
this.tam.UpdateOrder = FED0000.EEDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
//
// bn
//
this.bn.AddNewItem = null;
this.bn.BindingSource = this.bs;
this.bn.CountItem = this.bindingNavigatorCountItem;
this.bn.DeleteItem = null;
this.bn.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bn.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.bindingNavigatorMoveFirstItem,
this.bindingNavigatorMovePreviousItem,
this.bindingNavigatorSeparator,
@@ -128,249 +128,249 @@
this.toolStripLabel2,
this.tbFind,
this.btFind});
this.bn.Location = new System.Drawing.Point(0, 645);
this.bn.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
this.bn.MoveLastItem = this.bindingNavigatorMoveLastItem;
this.bn.MoveNextItem = this.bindingNavigatorMoveNextItem;
this.bn.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
this.bn.Name = "bn";
this.bn.PositionItem = this.bindingNavigatorPositionItem;
this.bn.Size = new System.Drawing.Size(1244, 25);
this.bn.TabIndex = 0;
this.bn.Text = "bindingNavigator1";
//
// bindingNavigatorCountItem
//
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
this.bindingNavigatorCountItem.Size = new System.Drawing.Size(27, 22);
this.bindingNavigatorCountItem.Text = "/{0}";
this.bindingNavigatorCountItem.ToolTipText = "전체 항목 수";
//
// bindingNavigatorMoveFirstItem
//
this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveFirstItem.Text = "처음으로 이동";
//
// bindingNavigatorMovePreviousItem
//
this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMovePreviousItem.Text = "이전으로 이동";
//
// bindingNavigatorSeparator
//
this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorPositionItem
//
this.bindingNavigatorPositionItem.AccessibleName = "위치";
this.bindingNavigatorPositionItem.AutoSize = false;
this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
this.bindingNavigatorPositionItem.Text = "0";
this.bindingNavigatorPositionItem.ToolTipText = "현재 위치";
//
// bindingNavigatorSeparator1
//
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorMoveNextItem
//
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveNextItem.Text = "다음으로 이동";
//
// bindingNavigatorMoveLastItem
//
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveLastItem.Text = "마지막으로 이동";
//
// bindingNavigatorSeparator2
//
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
//
// btAdd
//
this.btAdd.Image = ((System.Drawing.Image)(resources.GetObject("btAdd.Image")));
this.btAdd.Name = "btAdd";
this.btAdd.RightToLeftAutoMirrorImage = true;
this.btAdd.Size = new System.Drawing.Size(67, 22);
this.btAdd.Text = "추가(&A)";
this.btAdd.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click);
//
// btCopy
//
this.btCopy.Image = ((System.Drawing.Image)(resources.GetObject("btCopy.Image")));
this.btCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btCopy.Name = "btCopy";
this.btCopy.Size = new System.Drawing.Size(67, 22);
this.btCopy.Text = "복사(&C)";
this.btCopy.Visible = false;
//
// btEdit
//
this.btEdit.Image = ((System.Drawing.Image)(resources.GetObject("btEdit.Image")));
this.btEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btEdit.Name = "btEdit";
this.btEdit.Size = new System.Drawing.Size(65, 22);
this.btEdit.Text = "편집(&E)";
this.btEdit.Visible = false;
this.btEdit.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// btDel
//
this.btDel.Image = ((System.Drawing.Image)(resources.GetObject("btDel.Image")));
this.btDel.Name = "btDel";
this.btDel.RightToLeftAutoMirrorImage = true;
this.btDel.Size = new System.Drawing.Size(68, 22);
this.btDel.Text = "삭제(&D)";
this.btDel.Click += new System.EventHandler(this.bindingNavigatorDeleteItem_Click);
//
// btSave
//
this.btSave.Image = global::FED0000.Properties.Resources.action_save;
this.btSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btSave.Name = "btSave";
this.btSave.Size = new System.Drawing.Size(66, 22);
this.btSave.Text = "저장(&S)";
this.btSave.Click += new System.EventHandler(this.btSave_Click);
//
// toolStripButton1
//
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(75, 22);
this.toolStripButton1.Text = "폴더열기";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// toolStripLabel2
//
this.toolStripLabel2.Name = "toolStripLabel2";
this.toolStripLabel2.Size = new System.Drawing.Size(31, 22);
this.toolStripLabel2.Text = "검색";
//
// tbFind
//
this.tbFind.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tbFind.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.tbFind.Name = "tbFind";
this.tbFind.Size = new System.Drawing.Size(100, 25);
this.tbFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFind_KeyDown);
//
// btFind
//
this.btFind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btFind.Image = ((System.Drawing.Image)(resources.GetObject("btFind.Image")));
this.btFind.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btFind.Name = "btFind";
this.btFind.Size = new System.Drawing.Size(23, 22);
this.btFind.Text = "toolStripButton2";
this.btFind.Click += new System.EventHandler(this.btFind_Click);
//
// cm1
//
this.cm1.Font = new System.Drawing.Font("맑은 고딕", 20F);
this.cm1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.bn.Location = new System.Drawing.Point(0, 645);
this.bn.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
this.bn.MoveLastItem = this.bindingNavigatorMoveLastItem;
this.bn.MoveNextItem = this.bindingNavigatorMoveNextItem;
this.bn.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
this.bn.Name = "bn";
this.bn.PositionItem = this.bindingNavigatorPositionItem;
this.bn.Size = new System.Drawing.Size(1244, 25);
this.bn.TabIndex = 0;
this.bn.Text = "bindingNavigator1";
//
// bindingNavigatorCountItem
//
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
this.bindingNavigatorCountItem.Size = new System.Drawing.Size(27, 22);
this.bindingNavigatorCountItem.Text = "/{0}";
this.bindingNavigatorCountItem.ToolTipText = "전체 항목 수";
//
// bindingNavigatorMoveFirstItem
//
this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveFirstItem.Text = "처음으로 이동";
//
// bindingNavigatorMovePreviousItem
//
this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMovePreviousItem.Text = "이전으로 이동";
//
// bindingNavigatorSeparator
//
this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorPositionItem
//
this.bindingNavigatorPositionItem.AccessibleName = "위치";
this.bindingNavigatorPositionItem.AutoSize = false;
this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
this.bindingNavigatorPositionItem.Text = "0";
this.bindingNavigatorPositionItem.ToolTipText = "현재 위치";
//
// bindingNavigatorSeparator1
//
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorMoveNextItem
//
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveNextItem.Text = "다음으로 이동";
//
// bindingNavigatorMoveLastItem
//
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveLastItem.Text = "마지막으로 이동";
//
// bindingNavigatorSeparator2
//
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
//
// btAdd
//
this.btAdd.Image = ((System.Drawing.Image)(resources.GetObject("btAdd.Image")));
this.btAdd.Name = "btAdd";
this.btAdd.RightToLeftAutoMirrorImage = true;
this.btAdd.Size = new System.Drawing.Size(67, 22);
this.btAdd.Text = "추가(&A)";
this.btAdd.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click);
//
// btCopy
//
this.btCopy.Image = ((System.Drawing.Image)(resources.GetObject("btCopy.Image")));
this.btCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btCopy.Name = "btCopy";
this.btCopy.Size = new System.Drawing.Size(67, 22);
this.btCopy.Text = "복사(&C)";
this.btCopy.Visible = false;
//
// btEdit
//
this.btEdit.Image = ((System.Drawing.Image)(resources.GetObject("btEdit.Image")));
this.btEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btEdit.Name = "btEdit";
this.btEdit.Size = new System.Drawing.Size(65, 22);
this.btEdit.Text = "편집(&E)";
this.btEdit.Visible = false;
this.btEdit.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// btDel
//
this.btDel.Image = ((System.Drawing.Image)(resources.GetObject("btDel.Image")));
this.btDel.Name = "btDel";
this.btDel.RightToLeftAutoMirrorImage = true;
this.btDel.Size = new System.Drawing.Size(68, 22);
this.btDel.Text = "삭제(&D)";
this.btDel.Click += new System.EventHandler(this.bindingNavigatorDeleteItem_Click);
//
// btSave
//
this.btSave.Image = global::FED0000.Properties.Resources.action_save;
this.btSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btSave.Name = "btSave";
this.btSave.Size = new System.Drawing.Size(66, 22);
this.btSave.Text = "저장(&S)";
this.btSave.Click += new System.EventHandler(this.btSave_Click);
//
// toolStripButton1
//
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(75, 22);
this.toolStripButton1.Text = "폴더열기";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// toolStripLabel2
//
this.toolStripLabel2.Name = "toolStripLabel2";
this.toolStripLabel2.Size = new System.Drawing.Size(31, 22);
this.toolStripLabel2.Text = "검색";
//
// tbFind
//
this.tbFind.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tbFind.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.tbFind.Name = "tbFind";
this.tbFind.Size = new System.Drawing.Size(100, 25);
this.tbFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFind_KeyDown);
//
// btFind
//
this.btFind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btFind.Image = ((System.Drawing.Image)(resources.GetObject("btFind.Image")));
this.btFind.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btFind.Name = "btFind";
this.btFind.Size = new System.Drawing.Size(23, 22);
this.btFind.Text = "toolStripButton2";
this.btFind.Click += new System.EventHandler(this.btFind_Click);
//
// cm1
//
this.cm1.Font = new System.Drawing.Font("맑은 고딕", 20F);
this.cm1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exportDataToolStripMenuItem});
this.cm1.Name = "contextMenuStrip1";
this.cm1.Size = new System.Drawing.Size(314, 46);
//
// exportDataToolStripMenuItem
//
this.exportDataToolStripMenuItem.Name = "exportDataToolStripMenuItem";
this.exportDataToolStripMenuItem.Size = new System.Drawing.Size(313, 42);
this.exportDataToolStripMenuItem.Text = "목록 내보내기(xls)";
this.exportDataToolStripMenuItem.Click += new System.EventHandler(this.exportDataToolStripMenuItem_Click);
//
// toolStrip1
//
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(30, 30);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cm1.Name = "contextMenuStrip1";
this.cm1.Size = new System.Drawing.Size(314, 68);
//
// exportDataToolStripMenuItem
//
this.exportDataToolStripMenuItem.Name = "exportDataToolStripMenuItem";
this.exportDataToolStripMenuItem.Size = new System.Drawing.Size(313, 42);
this.exportDataToolStripMenuItem.Text = "목록 내보내기(xls)";
this.exportDataToolStripMenuItem.Click += new System.EventHandler(this.exportDataToolStripMenuItem_Click);
//
// toolStrip1
//
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(30, 30);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btSearch,
this.toolStripSeparator5,
this.toolStripButton2});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1244, 37);
this.toolStrip1.TabIndex = 3;
this.toolStrip1.Text = "toolStrip1";
//
// btSearch
//
this.btSearch.Image = ((System.Drawing.Image)(resources.GetObject("btSearch.Image")));
this.btSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btSearch.Name = "btSearch";
this.btSearch.Size = new System.Drawing.Size(80, 34);
this.btSearch.Text = "조회(&R)";
this.btSearch.Click += new System.EventHandler(this.btSearch_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 37);
//
// toolStripButton2
//
this.toolStripButton2.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(65, 34);
this.toolStripButton2.Text = "닫기";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click_1);
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.label1.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.label1.Location = new System.Drawing.Point(0, 622);
this.label1.Name = "label1";
this.label1.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.label1.Size = new System.Drawing.Size(1244, 23);
this.label1.TabIndex = 6;
this.label1.Text = "--";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// ta
//
this.ta.ClearBeforeFill = true;
//
// dv1
//
this.dv1.A_DelCurrentCell = true;
this.dv1.A_EnterToTab = true;
this.dv1.A_KoreanField = null;
this.dv1.A_UpperField = null;
this.dv1.A_ViewRownumOnHeader = true;
this.dv1.AllowUserToAddRows = false;
this.dv1.AutoGenerateColumns = false;
this.dv1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.dv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dv1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1244, 37);
this.toolStrip1.TabIndex = 3;
this.toolStrip1.Text = "toolStrip1";
//
// btSearch
//
this.btSearch.Image = ((System.Drawing.Image)(resources.GetObject("btSearch.Image")));
this.btSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btSearch.Name = "btSearch";
this.btSearch.Size = new System.Drawing.Size(80, 34);
this.btSearch.Text = "조회(&R)";
this.btSearch.Click += new System.EventHandler(this.btSearch_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 37);
//
// toolStripButton2
//
this.toolStripButton2.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(65, 34);
this.toolStripButton2.Text = "닫기";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click_1);
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.label1.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.label1.Location = new System.Drawing.Point(0, 622);
this.label1.Name = "label1";
this.label1.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.label1.Size = new System.Drawing.Size(1244, 23);
this.label1.TabIndex = 6;
this.label1.Text = "--";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// ta
//
this.ta.ClearBeforeFill = true;
//
// dv1
//
this.dv1.A_DelCurrentCell = true;
this.dv1.A_EnterToTab = true;
this.dv1.A_KoreanField = null;
this.dv1.A_UpperField = null;
this.dv1.A_ViewRownumOnHeader = true;
this.dv1.AllowUserToAddRows = false;
this.dv1.AutoGenerateColumns = false;
this.dv1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.dv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dv1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.expireDataGridViewCheckBoxColumn,
this.nameDataGridViewTextBoxColumn,
this.versionDataGridViewTextBoxColumn,
@@ -382,116 +382,116 @@
this.remarkDataGridViewTextBoxColumn,
this.sdateDataGridViewTextBoxColumn,
this.manuDataGridViewTextBoxColumn});
this.dv1.ContextMenuStrip = this.cm1;
this.dv1.DataSource = this.bs;
this.dv1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dv1.Location = new System.Drawing.Point(0, 37);
this.dv1.Name = "dv1";
this.dv1.RowTemplate.Height = 23;
this.dv1.Size = new System.Drawing.Size(1244, 585);
this.dv1.TabIndex = 7;
//
// expireDataGridViewCheckBoxColumn
//
this.expireDataGridViewCheckBoxColumn.DataPropertyName = "expire";
this.expireDataGridViewCheckBoxColumn.HeaderText = "만료";
this.expireDataGridViewCheckBoxColumn.Name = "expireDataGridViewCheckBoxColumn";
this.expireDataGridViewCheckBoxColumn.Width = 35;
//
// nameDataGridViewTextBoxColumn
//
this.nameDataGridViewTextBoxColumn.DataPropertyName = "name";
this.nameDataGridViewTextBoxColumn.HeaderText = "품명";
this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
this.nameDataGridViewTextBoxColumn.Width = 54;
//
// versionDataGridViewTextBoxColumn
//
this.versionDataGridViewTextBoxColumn.DataPropertyName = "Version";
this.versionDataGridViewTextBoxColumn.HeaderText = "버젼";
this.versionDataGridViewTextBoxColumn.Name = "versionDataGridViewTextBoxColumn";
this.versionDataGridViewTextBoxColumn.Width = 54;
//
// MeterialNo
//
this.MeterialNo.DataPropertyName = "MeterialNo";
this.MeterialNo.HeaderText = "SID";
this.MeterialNo.Name = "MeterialNo";
this.MeterialNo.Width = 49;
//
// supplyDataGridViewTextBoxColumn
//
this.supplyDataGridViewTextBoxColumn.DataPropertyName = "Supply";
this.supplyDataGridViewTextBoxColumn.HeaderText = "공급";
this.supplyDataGridViewTextBoxColumn.Name = "supplyDataGridViewTextBoxColumn";
this.supplyDataGridViewTextBoxColumn.Width = 54;
//
// qtyDataGridViewTextBoxColumn
//
this.qtyDataGridViewTextBoxColumn.DataPropertyName = "qty";
this.qtyDataGridViewTextBoxColumn.HeaderText = "수량";
this.qtyDataGridViewTextBoxColumn.Name = "qtyDataGridViewTextBoxColumn";
this.qtyDataGridViewTextBoxColumn.Width = 54;
//
// uidsDataGridViewTextBoxColumn
//
this.uidsDataGridViewTextBoxColumn.DataPropertyName = "uids";
this.uidsDataGridViewTextBoxColumn.HeaderText = "사용자";
this.uidsDataGridViewTextBoxColumn.Name = "uidsDataGridViewTextBoxColumn";
this.uidsDataGridViewTextBoxColumn.Width = 66;
//
// SerialNo
//
this.SerialNo.DataPropertyName = "SerialNo";
this.SerialNo.HeaderText = "S/N";
this.SerialNo.Name = "SerialNo";
this.SerialNo.Width = 53;
//
// remarkDataGridViewTextBoxColumn
//
this.remarkDataGridViewTextBoxColumn.DataPropertyName = "Remark";
this.remarkDataGridViewTextBoxColumn.HeaderText = "비고";
this.remarkDataGridViewTextBoxColumn.Name = "remarkDataGridViewTextBoxColumn";
this.remarkDataGridViewTextBoxColumn.Width = 54;
//
// sdateDataGridViewTextBoxColumn
//
this.sdateDataGridViewTextBoxColumn.DataPropertyName = "sdate";
this.sdateDataGridViewTextBoxColumn.HeaderText = "구매일";
this.sdateDataGridViewTextBoxColumn.Name = "sdateDataGridViewTextBoxColumn";
this.sdateDataGridViewTextBoxColumn.Width = 66;
//
// manuDataGridViewTextBoxColumn
//
this.manuDataGridViewTextBoxColumn.DataPropertyName = "manu";
this.manuDataGridViewTextBoxColumn.HeaderText = "제조";
this.manuDataGridViewTextBoxColumn.Name = "manuDataGridViewTextBoxColumn";
this.manuDataGridViewTextBoxColumn.Width = 54;
//
// fLicenseList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1244, 670);
this.Controls.Add(this.dv1);
this.Controls.Add(this.label1);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.bn);
this.DoubleBuffered = true;
this.Name = "fLicenseList";
this.Text = "라이선스 목록";
this.Load += new System.EventHandler(this.@__Load);
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).EndInit();
this.bn.ResumeLayout(false);
this.bn.PerformLayout();
this.cm1.ResumeLayout(false);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dv1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
this.dv1.ContextMenuStrip = this.cm1;
this.dv1.DataSource = this.bs;
this.dv1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dv1.Location = new System.Drawing.Point(0, 37);
this.dv1.Name = "dv1";
this.dv1.RowTemplate.Height = 23;
this.dv1.Size = new System.Drawing.Size(1244, 585);
this.dv1.TabIndex = 7;
//
// expireDataGridViewCheckBoxColumn
//
this.expireDataGridViewCheckBoxColumn.DataPropertyName = "expire";
this.expireDataGridViewCheckBoxColumn.HeaderText = "만료";
this.expireDataGridViewCheckBoxColumn.Name = "expireDataGridViewCheckBoxColumn";
this.expireDataGridViewCheckBoxColumn.Width = 35;
//
// nameDataGridViewTextBoxColumn
//
this.nameDataGridViewTextBoxColumn.DataPropertyName = "name";
this.nameDataGridViewTextBoxColumn.HeaderText = "품명";
this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
this.nameDataGridViewTextBoxColumn.Width = 54;
//
// versionDataGridViewTextBoxColumn
//
this.versionDataGridViewTextBoxColumn.DataPropertyName = "Version";
this.versionDataGridViewTextBoxColumn.HeaderText = "버젼";
this.versionDataGridViewTextBoxColumn.Name = "versionDataGridViewTextBoxColumn";
this.versionDataGridViewTextBoxColumn.Width = 54;
//
// MeterialNo
//
this.MeterialNo.DataPropertyName = "MeterialNo";
this.MeterialNo.HeaderText = "SID";
this.MeterialNo.Name = "MeterialNo";
this.MeterialNo.Width = 49;
//
// supplyDataGridViewTextBoxColumn
//
this.supplyDataGridViewTextBoxColumn.DataPropertyName = "Supply";
this.supplyDataGridViewTextBoxColumn.HeaderText = "공급";
this.supplyDataGridViewTextBoxColumn.Name = "supplyDataGridViewTextBoxColumn";
this.supplyDataGridViewTextBoxColumn.Width = 54;
//
// qtyDataGridViewTextBoxColumn
//
this.qtyDataGridViewTextBoxColumn.DataPropertyName = "qty";
this.qtyDataGridViewTextBoxColumn.HeaderText = "수량";
this.qtyDataGridViewTextBoxColumn.Name = "qtyDataGridViewTextBoxColumn";
this.qtyDataGridViewTextBoxColumn.Width = 54;
//
// uidsDataGridViewTextBoxColumn
//
this.uidsDataGridViewTextBoxColumn.DataPropertyName = "uids";
this.uidsDataGridViewTextBoxColumn.HeaderText = "사용자";
this.uidsDataGridViewTextBoxColumn.Name = "uidsDataGridViewTextBoxColumn";
this.uidsDataGridViewTextBoxColumn.Width = 66;
//
// SerialNo
//
this.SerialNo.DataPropertyName = "SerialNo";
this.SerialNo.HeaderText = "S/N";
this.SerialNo.Name = "SerialNo";
this.SerialNo.Width = 53;
//
// remarkDataGridViewTextBoxColumn
//
this.remarkDataGridViewTextBoxColumn.DataPropertyName = "Remark";
this.remarkDataGridViewTextBoxColumn.HeaderText = "비고";
this.remarkDataGridViewTextBoxColumn.Name = "remarkDataGridViewTextBoxColumn";
this.remarkDataGridViewTextBoxColumn.Width = 54;
//
// sdateDataGridViewTextBoxColumn
//
this.sdateDataGridViewTextBoxColumn.DataPropertyName = "sdate";
this.sdateDataGridViewTextBoxColumn.HeaderText = "구매일";
this.sdateDataGridViewTextBoxColumn.Name = "sdateDataGridViewTextBoxColumn";
this.sdateDataGridViewTextBoxColumn.Width = 66;
//
// manuDataGridViewTextBoxColumn
//
this.manuDataGridViewTextBoxColumn.DataPropertyName = "manu";
this.manuDataGridViewTextBoxColumn.HeaderText = "제조";
this.manuDataGridViewTextBoxColumn.Name = "manuDataGridViewTextBoxColumn";
this.manuDataGridViewTextBoxColumn.Width = 54;
//
// fLicenseList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1244, 670);
this.Controls.Add(this.dv1);
this.Controls.Add(this.label1);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.bn);
this.DoubleBuffered = true;
this.Name = "fLicenseList";
this.Text = "라이선스 목록";
this.Load += new System.EventHandler(this.@__Load);
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).EndInit();
this.bn.ResumeLayout(false);
this.bn.PerformLayout();
this.cm1.ResumeLayout(false);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dv1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}

View File

@@ -133,7 +133,7 @@
<data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
wgAADsIBFShKgAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
@@ -144,7 +144,7 @@
<data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
wgAADsIBFShKgAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
@@ -153,7 +153,7 @@
<data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
wgAADsIBFShKgAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
oAc0QjgAAAAASUVORK5CYII=
@@ -162,7 +162,7 @@
<data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
wgAADsIBFShKgAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
@@ -173,7 +173,7 @@
<data name="btAdd.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
wgAADsIBFShKgAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
@@ -208,7 +208,7 @@
<data name="btDel.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
wgAADsIBFShKgAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
@@ -220,18 +220,18 @@
<data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<data name="btFind.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">

View File

@@ -550,6 +550,10 @@
<Project>{58cfc90c-5068-46a2-a8de-0e92ee9e0990}</Project>
<Name>AmkorRestfulService</Name>
</ProjectReference>
<ProjectReference Include="..\..\Sub\arCtl\arControl.csproj">
<Project>{f31c242c-1b15-4518-9733-48558499fe4b}</Project>
<Name>arControl</Name>
</ProjectReference>
<ProjectReference Include="..\..\Sub\YARTE\YARTE.csproj">
<Project>{db5ee9c8-eacf-4231-877e-b9dfd7a714de}</Project>
<Name>YARTE</Name>

View File

@@ -1476,7 +1476,7 @@ namespace FEQ0000
else if (fpSpread1_Sheet1.Columns["po"].Index == fpSpread1_Sheet1.ActiveColumnIndex)
{
var drv = this.bs.Current as DataRowView;
var dr = drv.Row as dsPurchase.PurchaseRow;
var dr = drv.Row as dsPurchase.EETGW_PurchaseCRRow;
if (dr.state == "PR" && dr.po.isEmpty() == false)
{
dr.state = "PO";

View File

@@ -31,16 +31,16 @@ namespace FEQ0000
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fItemin));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
this.button1 = new System.Windows.Forms.Button();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
@@ -58,7 +58,7 @@ namespace FEQ0000
this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
this.tbman = new System.Windows.Forms.ToolStripComboBox();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.ipkolistDataGridView = new System.Windows.Forms.DataGridView();
this.dv1 = new arCtl.arDatagridView();
this.dvc_in = new System.Windows.Forms.DataGridViewButtonColumn();
this.dvc_manager = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dvc_admin = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -75,6 +75,8 @@ namespace FEQ0000
this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.dsPurchase = new FEQ0000.dsPurchase();
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
@@ -98,10 +100,11 @@ namespace FEQ0000
this.textBox1 = new System.Windows.Forms.TextBox();
this.panel3 = new System.Windows.Forms.Panel();
this.label3 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.dv2 = new System.Windows.Forms.DataGridView();
this.dv2 = new arCtl.arDatagridView();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewButtonColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -143,10 +146,12 @@ namespace FEQ0000
this.btRefreshIn = new System.Windows.Forms.ToolStripButton();
this.ta = new FEQ0000.dsPurchaseTableAdapters.IpkolistTableAdapter();
this.tam = new FEQ0000.dsPurchaseTableAdapters.TableAdapterManager();
this.button2 = new System.Windows.Forms.Button();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1.SuspendLayout();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ipkolistDataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dv1)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit();
@@ -162,6 +167,7 @@ namespace FEQ0000
((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
this.bindingNavigator1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// button1
@@ -314,15 +320,20 @@ namespace FEQ0000
this.toolStripButton3.Text = "새로고침";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// ipkolistDataGridView
// dv1
//
this.ipkolistDataGridView.AllowUserToAddRows = false;
this.ipkolistDataGridView.AllowUserToDeleteRows = false;
this.ipkolistDataGridView.AutoGenerateColumns = false;
this.ipkolistDataGridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.ipkolistDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.ipkolistDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.ipkolistDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dv1.A_DelCurrentCell = true;
this.dv1.A_EnterToTab = true;
this.dv1.A_KoreanField = null;
this.dv1.A_UpperField = null;
this.dv1.A_ViewRownumOnHeader = true;
this.dv1.AllowUserToAddRows = false;
this.dv1.AllowUserToDeleteRows = false;
this.dv1.AutoGenerateColumns = false;
this.dv1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.dv1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dv1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dvc_in,
this.dvc_manager,
this.dvc_admin,
@@ -339,26 +350,27 @@ namespace FEQ0000
this.dataGridViewTextBoxColumn11,
this.dataGridViewTextBoxColumn13,
this.dataGridViewTextBoxColumn12});
this.ipkolistDataGridView.DataSource = this.bs;
dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle24.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle24.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle24.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle24.Padding = new System.Windows.Forms.Padding(1, 5, 1, 5);
dataGridViewCellStyle24.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle24.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.ipkolistDataGridView.DefaultCellStyle = dataGridViewCellStyle24;
this.ipkolistDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.ipkolistDataGridView.Location = new System.Drawing.Point(0, 98);
this.ipkolistDataGridView.Name = "ipkolistDataGridView";
this.ipkolistDataGridView.ReadOnly = true;
this.ipkolistDataGridView.RowHeadersVisible = false;
this.ipkolistDataGridView.RowTemplate.Height = 23;
this.ipkolistDataGridView.Size = new System.Drawing.Size(1282, 499);
this.ipkolistDataGridView.TabIndex = 0;
this.ipkolistDataGridView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ipkolistDataGridView_CellClick);
this.ipkolistDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.ipkolistDataGridView_DataError);
this.dv1.ContextMenuStrip = this.contextMenuStrip1;
this.dv1.DataSource = this.bs;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle4.Padding = new System.Windows.Forms.Padding(1, 5, 1, 5);
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dv1.DefaultCellStyle = dataGridViewCellStyle4;
this.dv1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dv1.Location = new System.Drawing.Point(0, 98);
this.dv1.Name = "dv1";
this.dv1.ReadOnly = true;
this.dv1.RowHeadersVisible = false;
this.dv1.RowTemplate.Height = 23;
this.dv1.Size = new System.Drawing.Size(1282, 499);
this.dv1.TabIndex = 0;
this.dv1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ipkolistDataGridView_CellClick);
this.dv1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.ipkolistDataGridView_DataError);
//
// dvc_in
//
@@ -419,8 +431,8 @@ namespace FEQ0000
// dataGridViewTextBoxColumn6
//
this.dataGridViewTextBoxColumn6.DataPropertyName = "pumname";
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle21;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle1;
this.dataGridViewTextBoxColumn6.HeaderText = "품명";
this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
this.dataGridViewTextBoxColumn6.ReadOnly = true;
@@ -442,8 +454,8 @@ namespace FEQ0000
// dataGridViewTextBoxColumn9
//
this.dataGridViewTextBoxColumn9.DataPropertyName = "pumprice";
dataGridViewCellStyle22.Format = "N0";
this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle22;
dataGridViewCellStyle2.Format = "N0";
this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle2;
this.dataGridViewTextBoxColumn9.HeaderText = "단가";
this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
this.dataGridViewTextBoxColumn9.ReadOnly = true;
@@ -451,8 +463,8 @@ namespace FEQ0000
// dataGridViewTextBoxColumn10
//
this.dataGridViewTextBoxColumn10.DataPropertyName = "pumamt";
dataGridViewCellStyle23.Format = "N0";
this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle23;
dataGridViewCellStyle3.Format = "N0";
this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle3;
this.dataGridViewTextBoxColumn10.HeaderText = "금액";
this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
this.dataGridViewTextBoxColumn10.ReadOnly = true;
@@ -478,6 +490,21 @@ namespace FEQ0000
this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
this.dataGridViewTextBoxColumn12.ReadOnly = true;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(151, 26);
//
// 목록내보내기ToolStripMenuItem
//
this.ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("목록내보내기ToolStripMenuItem.Image")));
this.ToolStripMenuItem.Name = "목록내보내기ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
this.ToolStripMenuItem.Text = "목록 내보내기";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// bs
//
this.bs.DataMember = "Ipkolist";
@@ -646,7 +673,7 @@ namespace FEQ0000
//
// panel2
//
this.panel2.Controls.Add(this.ipkolistDataGridView);
this.panel2.Controls.Add(this.dv1);
this.panel2.Controls.Add(this.textBox1);
this.panel2.Controls.Add(this.bn);
this.panel2.Controls.Add(this.statusStrip1);
@@ -694,6 +721,19 @@ namespace FEQ0000
this.label3.Text = "QR CODE 값을 입력하세요";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// button2
//
this.button2.BackColor = System.Drawing.Color.Lime;
this.button2.Dock = System.Windows.Forms.DockStyle.Right;
this.button2.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.button2.Location = new System.Drawing.Point(1187, 0);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(95, 51);
this.button2.TabIndex = 4;
this.button2.Text = "선택 항목 입고";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
@@ -753,16 +793,17 @@ namespace FEQ0000
this.orderno,
this.dataGridViewTextBoxColumn23,
this.dataGridViewTextBoxColumn24});
this.dv2.ContextMenuStrip = this.contextMenuStrip2;
this.dv2.DataSource = this.bs2;
dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle30.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle30.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle30.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle30.Padding = new System.Windows.Forms.Padding(1, 5, 1, 5);
dataGridViewCellStyle30.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle30.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle30.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dv2.DefaultCellStyle = dataGridViewCellStyle30;
dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle10.Padding = new System.Windows.Forms.Padding(1, 5, 1, 5);
dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dv2.DefaultCellStyle = dataGridViewCellStyle10;
this.dv2.Dock = System.Windows.Forms.DockStyle.Fill;
this.dv2.Location = new System.Drawing.Point(3, 50);
this.dv2.Name = "dv2";
@@ -812,8 +853,8 @@ namespace FEQ0000
// dataGridViewTextBoxColumn17
//
this.dataGridViewTextBoxColumn17.DataPropertyName = "pumname";
dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn17.DefaultCellStyle = dataGridViewCellStyle25;
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn17.DefaultCellStyle = dataGridViewCellStyle5;
this.dataGridViewTextBoxColumn17.HeaderText = "품명";
this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
this.dataGridViewTextBoxColumn17.ReadOnly = true;
@@ -821,8 +862,8 @@ namespace FEQ0000
// dataGridViewTextBoxColumn18
//
this.dataGridViewTextBoxColumn18.DataPropertyName = "pumscale";
dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle26;
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle6;
this.dataGridViewTextBoxColumn18.HeaderText = "모델";
this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
this.dataGridViewTextBoxColumn18.ReadOnly = true;
@@ -830,9 +871,9 @@ namespace FEQ0000
// dataGridViewTextBoxColumn19
//
this.dataGridViewTextBoxColumn19.DataPropertyName = "pumqty";
dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle27.Format = "N0";
this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle27;
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle7.Format = "N0";
this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle7;
this.dataGridViewTextBoxColumn19.HeaderText = "수량";
this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
this.dataGridViewTextBoxColumn19.ReadOnly = true;
@@ -840,9 +881,9 @@ namespace FEQ0000
// dataGridViewTextBoxColumn20
//
this.dataGridViewTextBoxColumn20.DataPropertyName = "pumprice";
dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle28.Format = "N0";
this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle28;
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle8.Format = "N0";
this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle8;
this.dataGridViewTextBoxColumn20.HeaderText = "단가";
this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
this.dataGridViewTextBoxColumn20.ReadOnly = true;
@@ -850,9 +891,9 @@ namespace FEQ0000
// dataGridViewTextBoxColumn21
//
this.dataGridViewTextBoxColumn21.DataPropertyName = "pumamt";
dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle29.Format = "N0";
this.dataGridViewTextBoxColumn21.DefaultCellStyle = dataGridViewCellStyle29;
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle9.Format = "N0";
this.dataGridViewTextBoxColumn21.DefaultCellStyle = dataGridViewCellStyle9;
this.dataGridViewTextBoxColumn21.HeaderText = "금액";
this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
this.dataGridViewTextBoxColumn21.ReadOnly = true;
@@ -1084,6 +1125,7 @@ namespace FEQ0000
this.toolStripButton7.Name = "toolStripButton7";
this.toolStripButton7.Size = new System.Drawing.Size(75, 44);
this.toolStripButton7.Text = "닫기";
this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
//
// toolStripLabel4
//
@@ -1120,18 +1162,20 @@ namespace FEQ0000
this.tam.PurchaseTableAdapter = null;
this.tam.UpdateOrder = FEQ0000.dsPurchaseTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
//
// button2
// contextMenuStrip2
//
this.button2.BackColor = System.Drawing.Color.Lime;
this.button2.Dock = System.Windows.Forms.DockStyle.Right;
this.button2.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.button2.Location = new System.Drawing.Point(1187, 0);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(95, 51);
this.button2.TabIndex = 4;
this.button2.Text = "선택 항목 입고";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(181, 48);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem1.Image")));
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
this.toolStripMenuItem1.Text = "목록 내보내기";
this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
//
// fItemin
//
@@ -1147,7 +1191,8 @@ namespace FEQ0000
this.statusStrip1.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.ipkolistDataGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dv1)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dsPurchase)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bn)).EndInit();
@@ -1169,6 +1214,7 @@ namespace FEQ0000
this.bindingNavigator1.PerformLayout();
this.toolStrip2.ResumeLayout(false);
this.toolStrip2.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -1196,7 +1242,7 @@ namespace FEQ0000
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveNextItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveLastItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator2;
private System.Windows.Forms.DataGridView ipkolistDataGridView;
private arCtl.arDatagridView dv1;
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
private System.Windows.Forms.ToolStripTextBox tbFind;
private System.Windows.Forms.ToolStripButton btFind;
@@ -1217,7 +1263,7 @@ namespace FEQ0000
private System.Windows.Forms.ToolStripButton btRefreshIn;
private dsPurchase dsPurchase1;
private System.Windows.Forms.BindingSource bs2;
private System.Windows.Forms.DataGridView dv2;
private arCtl.arDatagridView dv2;
private System.Windows.Forms.BindingNavigator bindingNavigator1;
private System.Windows.Forms.ToolStripLabel toolStripLabel2;
private System.Windows.Forms.ToolStripButton toolStripButton8;
@@ -1277,5 +1323,9 @@ namespace FEQ0000
private System.Windows.Forms.ToolStripLabel toolStripLabel7;
private System.Windows.Forms.ToolStripLabel lbSum2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
}
}

View File

@@ -20,7 +20,7 @@ namespace FEQ0000
public fItemin()
{
InitializeComponent();
ipkolistDataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dv1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
}
private void toolStripButton2_Click(object sender, EventArgs e)
@@ -55,16 +55,16 @@ namespace FEQ0000
FCOMMON.info.Login.gcode,
search_mananger, search_admin);
ipkolistDataGridView.AutoResizeColumn(0);
ipkolistDataGridView.AutoResizeColumn(1);
ipkolistDataGridView.AutoResizeColumn(2);
ipkolistDataGridView.AutoResizeColumn(3);
ipkolistDataGridView.AutoResizeColumn(4);
ipkolistDataGridView.AutoResizeColumn(7);
ipkolistDataGridView.AutoResizeColumn(8);
ipkolistDataGridView.AutoResizeColumn(9);
ipkolistDataGridView.AutoResizeColumn(10);
ipkolistDataGridView.AutoResizeColumn(5);
dv1.AutoResizeColumn(0);
dv1.AutoResizeColumn(1);
dv1.AutoResizeColumn(2);
dv1.AutoResizeColumn(3);
dv1.AutoResizeColumn(4);
dv1.AutoResizeColumn(7);
dv1.AutoResizeColumn(8);
dv1.AutoResizeColumn(9);
dv1.AutoResizeColumn(10);
dv1.AutoResizeColumn(5);
}
@@ -126,16 +126,16 @@ namespace FEQ0000
}
ipkolistDataGridView.AutoResizeColumn(0);
ipkolistDataGridView.AutoResizeColumn(1);
ipkolistDataGridView.AutoResizeColumn(2);
ipkolistDataGridView.AutoResizeColumn(3);
ipkolistDataGridView.AutoResizeColumn(4);
ipkolistDataGridView.AutoResizeColumn(7);
ipkolistDataGridView.AutoResizeColumn(8);
ipkolistDataGridView.AutoResizeColumn(9);
ipkolistDataGridView.AutoResizeColumn(10);
ipkolistDataGridView.AutoResizeColumn(5);
dv1.AutoResizeColumn(0);
dv1.AutoResizeColumn(1);
dv1.AutoResizeColumn(2);
dv1.AutoResizeColumn(3);
dv1.AutoResizeColumn(4);
dv1.AutoResizeColumn(7);
dv1.AutoResizeColumn(8);
dv1.AutoResizeColumn(9);
dv1.AutoResizeColumn(10);
dv1.AutoResizeColumn(5);
tbFind.Focus();
tbFind.SelectAll();
@@ -607,5 +607,46 @@ namespace FEQ0000
{
func_ipgo();
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
SaveFileDialog sd = new SaveFileDialog();
sd.Filter = "csv|*.csv";
sd.FileName = "xiplist.csv";
if (sd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
dv1.ExportData(sd.FileName, false);
//fpSpread1.SaveExcel(sd.FileName,
// FarPoint.Excel.ExcelSaveFlags.SaveAsViewed
// | FarPoint.Excel.ExcelSaveFlags.SaveAsFiltered
// | FarPoint.Excel.ExcelSaveFlags.NoFormulas
// | FarPoint.Excel.ExcelSaveFlags.SaveCustomColumnHeaders);
var dlg = FCOMMON.Util.MsgQ("생성된 파일을 확인 할까요?\n\n" + sd.FileName);
if (dlg == DialogResult.Yes) FCOMMON.Util.RunExplorer(sd.FileName);
}
}
private void toolStripButton7_Click(object sender, EventArgs e)
{
this.Close();
}
private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
SaveFileDialog sd = new SaveFileDialog();
sd.Filter = "csv|*.csv";
sd.FileName = "iplist.csv";
if (sd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
dv2.ExportData(sd.FileName, false);
//fpSpread1.SaveExcel(sd.FileName,
// FarPoint.Excel.ExcelSaveFlags.SaveAsViewed
// | FarPoint.Excel.ExcelSaveFlags.SaveAsFiltered
// | FarPoint.Excel.ExcelSaveFlags.NoFormulas
// | FarPoint.Excel.ExcelSaveFlags.SaveCustomColumnHeaders);
var dlg = FCOMMON.Util.MsgQ("생성된 파일을 확인 할까요?\n\n" + sd.FileName);
if (dlg == DialogResult.Yes) FCOMMON.Util.RunExplorer(sd.FileName);
}
}
}
}

View File

@@ -127,24 +127,24 @@
<data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<data name="toolStripButton2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@@ -161,31 +161,31 @@
<data name="toolStripButton3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
fIgAAAAASUVORK5CYII=
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAWASURBVFhH3VjZU1tVGL8zbg8uL65/gAuOPLg8O1q1I6MF
CU4SkpC00BKoY4GRMEIBL5A9QZagqCwCo1M7raMUSAgtJCShIZBQkCFQkEKdUm1BFpcXqzTer3yQm5ub
BAjhob+ZbyZ3vt8955dzz7ecQ9y1SPrY9JJQ1a87rL1oOloz5DpmcHuz6jxzRw3uGanBMypU25xI3T8k
FbQ/LFRbNelVLk9Bw09/qDqXfPruNVbLrnPP42uxx2uk9d5UlVUJq0N+e+U2myCm7ZtAHtkTn6Yd8JS3
zf/LJiSUsQnkk5YF6k/OhzIB2bvI+eS8FumRIVD0SY5/NvqLzrTKKgJM3bXsyzvtXc9rnl7Jrh+/Bga/
JTr7DRxmCyCabQyw4tOzfwuUjlqkRoZAacnNaZq8yTaYzrTiy/tiYjG9amhQqLLVp5R2HUgq6X7uYH7P
gwknTA8kFp178r3iztdxqC2EErghzrZ9cfyyPnFuw9RvzIF0pjWfrG1mWaJ1mPkl559H+rYRSmBO4+RN
fkVfCtLCA/YcfFbmIJquFV+63jnBL+9+Fak7RrhPDD4+eeFZpLIDohUCgrnnyPa5/0TaAUdy4Q+PInVX
CBQYOIfOuOoTawZcXO6Ze5AeDEglzGiFlROr7Xap1HMf0naNTYGylvm/RCrbLIxNn4v8/vqtVKW1BOmB
gCRMhfoM/QX4l/BZo125TYBAEEdVIMMhsuOxjGrXVOB8a77MWvdlCDZ8xQ+oEMwkLGudXo5mzzEhVPUu
gjh8JHgKy9uylpkl+pzyH2fXqS9ZjhQ/qJThoRMhlUh0A53o3hNwSs06/LkFic5hZu75w3qnG90bgMIP
tZVOghy4m1SyU3DI3pfzW6YDVhESPaeoJx4pVFKWWyuZhf9I5eC+dSPpOucgfW5Vx5JPoOxXoZtaZr3T
SCdA+YIKge6YQ6i0N2qNgREtrnR2oZsgjlS7hujO3O+865xi4xvojjmovXkwtyUwvaVXDw+imyCktcOT
dCfsgeRCY/isvod4t6TzGVnrzDJdA2hCN0Fk1V2apTuz6z3XuKT1IXTHHDAXzEnXAJrQTRCZhpErdOd+
C0wgTY9I68eu0zVk1Y34BWZUjwRkdCrslxMLzU+jO+aAVi2neWKNrgHOOOhmCRJqw6aQ3W+hO+ZIpIIk
55R3na7h6KdDLnQTBJzM6E4o4hD66I45hCrrl8zGQax1+NOMQGHRq6nkSCfsZ6KG1aLPvZGoLf5EzSV7
XpS1Ta3SSR81TP+eXGp5BSkxA0/ZE5/fPB5Q6vJbp1Y5VOOMlA0ENwurVLPgMKN7C2wFPxqINLYL0JjQ
5w5qFgB8aknJbwLbrQKqFUqVWxOQQu2VfgO0TPgYNfjlljehKNDnhHYLtCDFD2hYM2s803Qy2LEa92Vq
uZ8AcdBsQtOJr0SFhCLT4xlVQ144iNHnC9mwAlIV1vIylpYf2nMQB897IZBLnrk/TTMwENTyn124xZfb
ypAWDDg0ibX24eCDuv85WoGwciBO2T4XkPfuHJqoucMemgApSnPc8bqxsMdDpO4YsOfgszJXDkxafelq
CmmOQ2p4cCv6eKFuFXYj8P2S7hdEGrsRAoK558BgLp7cIkJ6ZAgqrLUnT83/yRwIjE1gUlHXgXdkXU/B
tQc0GYeKOuKgfImUtq8yqCT84dfjS8xUsml5Td4bPGXfCRwqMsKJA2MTCBdFsDpwcfSBYWwhp2li7WTj
xG22T7lpsOfgs6bK+wQ4TGTA1Veaxv6r9PPRn0MZT2G9ivQtgGg2EaEs/+zCPxAQ295z0WK7AiEJQ55L
VfSTEaN1LxFOoPLc4p3aCuULKsR+NsJbgAtzuDiHqxPozqHZhEOPRH/RKFRZ1BDFSL3bQBD/A2Igngxh
DOmbAAAAAElFTkSuQmCC
</value>
</data>
<metadata name="dvc_in.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
@@ -200,15 +200,29 @@
<metadata name="place.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 54</value>
</metadata>
<data name="목록내보내기ToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABGdBTUEAALGPC/xhBQAAAgNJREFUWEft
lssrRFEcx+cPsZCVjaXM5I5MWchjKCkL8spGKaU8k60FMzHGeKU8FxYznsWCmlGKZrxLbCR35BWKEYof
5+fOzUyHJvd3bNzv7dM999f53fOZ25w7Y9AjKqYOU6KxU2ogwZ4er9yWLqZOqdBok0Ar5m4LO58k26UE
5dY0oRL07M9AVl8uG9NKUgluyH4IBAP0kpSC56ELeklqQXJJEYKkkqIEySRFCkZKph6ndKfHKcvGHirB
/rUhcO96uNi9XWCymYGtpSwbe6gEY0EX1IouqJX/K9i60AbOVReS6cpW67XuOrVeOFwU0cNDmGDzfCuE
M7I+ijWLIwNuQjdYC96dgbkL/w/+iDBBxpa8jTKPL4/4FB0+J16zsA/A64lGqGDpeAW8vr2i0Lh/Eq4e
rnG8d7aHvxK8nmiECjIWD5ZQKpy3j6Nisoo7l4dwwbzBAvUpsiwfrnDnfYdwwaa5FkXtM/JdMKbNEUao
IBORb2UUC3//WBxeJ3c+D6GCPb5eRQmgfqYRAqebOA49hyC738rtiUaYYKYrB+6fHlDo6PIId231VA1e
s7h3PNy+aIQJenamFRWAhtlmtb55uoU1tnGKR0sjengIEywZK4eyiUrk6zsvq8+q1nMG8iN6eAgTpEIX
1IouqBVdUCu/E7SlJRntUvtfwNZSltVDHIPhHfLo+ZtN48e/AAAAAElFTkSuQmCC
</value>
</data>
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>354, 17</value>
</metadata>
<metadata name="dsPurchase.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>240, 17</value>
</metadata>
<metadata name="dsPurchase.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>240, 17</value>
</metadata>
<metadata name="bn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>553, 17</value>
</metadata>
@@ -274,27 +288,35 @@
Kw/6HydJHj5byGPQIkKNAAAAAElFTkSuQmCC
</value>
</data>
<metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>917, 17</value>
</metadata>
<metadata name="toolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>619, 17</value>
</metadata>
<metadata name="dataGridViewButtonColumn1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="orderno.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="contextMenuStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>174, 54</value>
</metadata>
<data name="toolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABGdBTUEAALGPC/xhBQAAAgNJREFUWEft
lssrRFEcx+cPsZCVjaXM5I5MWchjKCkL8spGKaU8k60FMzHGeKU8FxYznsWCmlGKZrxLbCR35BWKEYof
5+fOzUyHJvd3bNzv7dM999f53fOZ25w7Y9AjKqYOU6KxU2ogwZ4er9yWLqZOqdBok0Ar5m4LO58k26UE
5dY0oRL07M9AVl8uG9NKUgluyH4IBAP0kpSC56ELeklqQXJJEYKkkqIEySRFCkZKph6ndKfHKcvGHirB
/rUhcO96uNi9XWCymYGtpSwbe6gEY0EX1IouqJX/K9i60AbOVReS6cpW67XuOrVeOFwU0cNDmGDzfCuE
M7I+ijWLIwNuQjdYC96dgbkL/w/+iDBBxpa8jTKPL4/4FB0+J16zsA/A64lGqGDpeAW8vr2i0Lh/Eq4e
rnG8d7aHvxK8nmiECjIWD5ZQKpy3j6Nisoo7l4dwwbzBAvUpsiwfrnDnfYdwwaa5FkXtM/JdMKbNEUao
IBORb2UUC3//WBxeJ3c+D6GCPb5eRQmgfqYRAqebOA49hyC738rtiUaYYKYrB+6fHlDo6PIId231VA1e
s7h3PNy+aIQJenamFRWAhtlmtb55uoU1tnGKR0sjengIEywZK4eyiUrk6zsvq8+q1nMG8iN6eAgTpEIX
1IouqBVdUCu/E7SlJRntUvtfwNZSltVDHIPhHfLo+ZtN48e/AAAAAElFTkSuQmCC
</value>
</data>
<metadata name="bs2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>846, 17</value>
</metadata>
<metadata name="dsPurchase1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>725, 17</value>
</metadata>
<metadata name="dsPurchase1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>725, 17</value>
</metadata>
<metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>917, 17</value>
</metadata>
@@ -363,21 +385,21 @@
<data name="toolStripButton6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<metadata name="toolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
@@ -386,54 +408,54 @@
<data name="toolStripButton7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<data name="btRefreshIn.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAV/SURBVFhH3VjZU1tVGL8zbg8uL65/gAuOPLg8O1q1I6MF
CQ5ZgRYogTqW0hJGKOAFws2KLEFRKQgdR+y0jlJIQmghISENgYSCDJCCWHBKtQVZXF6s0ni/8pHc3NyE
JYSH/ma+mdz5fvecX84933IOcdci4SPjS2JFn+ag+pIxs3bQeVjnmsiud1/N1LmmpTr3iFhpdSB175BQ
0P6wWGlRpVc73QWNP/6h6Fz0artWOS2n3jWLr0Ufr5GWe4UKCwWrQ7bN3uYSxLY9E8gnu2NT1HZ3+dez
/3IJCWVcAgWkeZ7+k7OhTET2LPA+vqBG+uYQVfamHfl05BeNcYVTBJhSv+Q9ccazltc8tZzTMHYNDH6n
aWw3cBgfQDTXGGDFZ2b+FlH9dUjdHCLKfCy3afIm12Aa47I37/PxhfTqwQGxwtqQVKrfl1DS9dz+/O4H
444aH4gvOv/ke8Wdr+NQPoQSuC7OunVxgrLe1GONnt/YA2mMq17Z6emlNHW/SVBy4XmkbxmhBOaemrwp
qOhNQlp4wJ6Dz8oeRKVf9qZrHeOC8q5XkbpthPvE4BOQF59FKjcgWiEg2HuObJ/7T6K29ycWfv8oUneE
QIGBc2gMK95Uld2ZnHz2HqQHA1IJO1ph5VKVNptU6r4PaTvGhkBZy+xfEoV1BsZmzkV+d/2WkLKUID0Q
kITpUJ9mvgD/Ej5rpCu3ARAI4ugKpDtAdjyWUeP0BM636s2qc12BYMNX/IAKwU7CstappUj2HBtiRc8C
iMNHgl9pflvWMr3InFP+w9U1+kuWI8UPOmW4mURIJWkaeye6dwW8UpMGf/qQpuk3sff8Qa3Dhe51QOGH
2sokQQ7cSSrZLnhkz8v5LVMBqwiJnlfUHYsUOinLLVXswn+oamDPupF0jWOAObeiY9ErovoU6KaXWesw
MAlQvqBCoDvqEFO2U2pDYESnVjn06CaIQzXOQabz+LeeNV6x4Q10Rx303tx/vCUwvaXXDA2gmyCkdUOT
TCfsgcRCQ/isvot4t6TzGVnr9BJTA2hCN0Fk11+eYTpzGtzXkknLQ+iOOmAumJOpATShmyCydMM/M517
LTCOND4ibRi9ztSQXT/sF5hRMxyQ0emwX4ovND2N7qgDWrXc5vFVpgY446CbI0joDZtEdr2F7qgjng6S
vDbPGlND5ieDTnQTBJzMmE4o4hD66I46xArLF+zGIVXd708zokqzVkknRyZhLxM1rBZz7vVEbfYn6mSy
+0XZac8Kk3Sicer3xFLzK0iJGvhUd2x+81hAqctv9azw6MYZKesIbhZW6Gah34RuH7gKfiSQqKwXoTFh
zh3ULAAE9JKS3wS2WwV0KySUW+KQQu+VPh20TPgYMQTl5jehKDDnhHYLtCDFD2hYs2rdU0wy2OFa1xV6
uZ8AcdBsQtOJr0SEuCLj4xnVgxNwEGPOF7JhBQgrLeVlHC0/tOcgDp53Q2Ayefb+FJXdHtTyn5u/JZBb
y5AWDDg0paptQ8EHdf9zpAJh5UAc1T4XkPfuHJroucMemgBJlCnmSP1o2OMhUrcN2HPwWdkrByatuTyX
RJpikBoeyRW9/FC3CjsR+H5J1wsSlc0AAcHec2AwF19uliB9c4gqLHUn22b/ZA8ExiUwoUi/7x2Z/im4
9oAm40BRRwyULwll/TKDTsIffjW2yE4lG5bXNHGDT/UexaE2RzhxYFwC4aIIVgcujj7Qjc7nNo2vnmye
vM31KTcM9hx8VqG8V4TDbA64+kpR2X6VfjbyUyjjV1rmkO4DiOYSEcoKzs3/AwGx5T0XKbYqEJIw5Dlh
ZR+5abTuJsIJpM4v3KmtUL6gQuxlI+wDXJjDxTlcnUB3Ds0mHHrStJcMYoVZCVGM1LsNBPE/7jCePtVW
fIgAAAAASUVORK5CYII=
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAWASURBVFhH3VjZU1tVGL8zbg8uL65/gAuOPLg8O1q1I6MF
CU4SkpC00BKoY4GRMEIBL5A9QZagqCwCo1M7raMUSAgtJCShIZBQkCFQkEKdUm1BFpcXqzTer3yQm5ub
BAjhob+ZbyZ3vt8955dzz7ecQ9y1SPrY9JJQ1a87rL1oOloz5DpmcHuz6jxzRw3uGanBMypU25xI3T8k
FbQ/LFRbNelVLk9Bw09/qDqXfPruNVbLrnPP42uxx2uk9d5UlVUJq0N+e+U2myCm7ZtAHtkTn6Yd8JS3
zf/LJiSUsQnkk5YF6k/OhzIB2bvI+eS8FumRIVD0SY5/NvqLzrTKKgJM3bXsyzvtXc9rnl7Jrh+/Bga/
JTr7DRxmCyCabQyw4tOzfwuUjlqkRoZAacnNaZq8yTaYzrTiy/tiYjG9amhQqLLVp5R2HUgq6X7uYH7P
gwknTA8kFp178r3iztdxqC2EErghzrZ9cfyyPnFuw9RvzIF0pjWfrG1mWaJ1mPkl559H+rYRSmBO4+RN
fkVfCtLCA/YcfFbmIJquFV+63jnBL+9+Fak7RrhPDD4+eeFZpLIDohUCgrnnyPa5/0TaAUdy4Q+PInVX
CBQYOIfOuOoTawZcXO6Ze5AeDEglzGiFlROr7Xap1HMf0naNTYGylvm/RCrbLIxNn4v8/vqtVKW1BOmB
gCRMhfoM/QX4l/BZo125TYBAEEdVIMMhsuOxjGrXVOB8a77MWvdlCDZ8xQ+oEMwkLGudXo5mzzEhVPUu
gjh8JHgKy9uylpkl+pzyH2fXqS9ZjhQ/qJThoRMhlUh0A53o3hNwSs06/LkFic5hZu75w3qnG90bgMIP
tZVOghy4m1SyU3DI3pfzW6YDVhESPaeoJx4pVFKWWyuZhf9I5eC+dSPpOucgfW5Vx5JPoOxXoZtaZr3T
SCdA+YIKge6YQ6i0N2qNgREtrnR2oZsgjlS7hujO3O+865xi4xvojjmovXkwtyUwvaVXDw+imyCktcOT
dCfsgeRCY/isvod4t6TzGVnrzDJdA2hCN0Fk1V2apTuz6z3XuKT1IXTHHDAXzEnXAJrQTRCZhpErdOd+
C0wgTY9I68eu0zVk1Y34BWZUjwRkdCrslxMLzU+jO+aAVi2neWKNrgHOOOhmCRJqw6aQ3W+hO+ZIpIIk
55R3na7h6KdDLnQTBJzM6E4o4hD66I45hCrrl8zGQax1+NOMQGHRq6nkSCfsZ6KG1aLPvZGoLf5EzSV7
XpS1Ta3SSR81TP+eXGp5BSkxA0/ZE5/fPB5Q6vJbp1Y5VOOMlA0ENwurVLPgMKN7C2wFPxqINLYL0JjQ
5w5qFgB8aknJbwLbrQKqFUqVWxOQQu2VfgO0TPgYNfjlljehKNDnhHYLtCDFD2hYM2s803Qy2LEa92Vq
uZ8AcdBsQtOJr0SFhCLT4xlVQ144iNHnC9mwAlIV1vIylpYf2nMQB897IZBLnrk/TTMwENTyn124xZfb
ypAWDDg0ibX24eCDuv85WoGwciBO2T4XkPfuHJqoucMemgApSnPc8bqxsMdDpO4YsOfgszJXDkxafelq
CmmOQ2p4cCv6eKFuFXYj8P2S7hdEGrsRAoK558BgLp7cIkJ6ZAgqrLUnT83/yRwIjE1gUlHXgXdkXU/B
tQc0GYeKOuKgfImUtq8yqCT84dfjS8xUsml5Td4bPGXfCRwqMsKJA2MTCBdFsDpwcfSBYWwhp2li7WTj
xG22T7lpsOfgs6bK+wQ4TGTA1Veaxv6r9PPRn0MZT2G9ivQtgGg2EaEs/+zCPxAQ295z0WK7AiEJQ55L
VfSTEaN1LxFOoPLc4p3aCuULKsR+NsJbgAtzuDiHqxPozqHZhEOPRH/RKFRZ1BDFSL3bQBD/A2Igngxh
DOmbAAAAAElFTkSuQmCC
</value>
</data>
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">