From 58f78e4fe78d92f5c23b3b9961ff73e87fdcf981 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期五, 25 十月 2024 16:22:33 +0800 Subject: [PATCH] 11 --- DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemArn.cs | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemArn.cs b/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemArn.cs index 0d757e2..3ffb5b5 100644 --- a/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemArn.cs +++ b/DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_MesInvItemArn.cs @@ -49,9 +49,9 @@ e.Bounds.Top + 45, e.Bounds.Right - 5, e.Bounds.Height - 5); e.Graphics.DrawString(str, f, Brushes.Gray, r); }; - ucLookSupplier1.EditChanged += (s, e) => + txt_suppNo.EditChanged += (s, e) => { - var ddd = ucLookSupplier1.GetValue(); + var ddd = txt_suppNo.GetValue(); // lbSupplierName.Text = ddd[1]; }; btnSelect.Click += (s, e) => @@ -72,9 +72,9 @@ }; frm.ShowDialog(); }; - ucLookCk1.EditChanged += (s, e) => + txt_depotsCode.EditChanged += (s, e) => { - var ddd = ucLookCk1.GetValue(); + var ddd = txt_depotsCode.GetValue(); //lbCkName.Text = ddd[1]; }; } @@ -264,19 +264,19 @@ private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e) { toolBarMenu1.isSetBtn = false; - var _ckCode = ucLookCk1.GetValue()[2]; //浠撳簱缂栧彿 depots_code - var _gysCode = ucLookSupplier1.GetValue()[2]; //渚涘簲鍟嗙紪鍙� + var _ckCode = txt_depotsCode.GetValue()[2]; //浠撳簱缂栧彿 depots_code + var _gysCode = txt_suppNo.GetValue()[2]; //渚涘簲鍟嗙紪鍙� if (string.IsNullOrEmpty(_ckCode)) { MsgHelper.Warning("璇烽�夋嫨浠撳簱锛�"); - ucLookCk1.Focus(); + txt_depotsCode.Focus(); return; } if (string.IsNullOrEmpty(_gysCode)) { MsgHelper.Warning("璇烽�夋嫨渚涘簲鍟嗭紒"); - ucLookSupplier1.Focus(); + txt_suppNo.Focus(); return; } -- Gitblit v1.9.3