From 40112e039f80fc48e95f3b8b66071ec21d773db1 Mon Sep 17 00:00:00 2001 From: chi Date: Wed, 16 Aug 2023 08:43:01 +0900 Subject: [PATCH] =?UTF-8?q?=ED=92=88=EB=AA=A9=EB=B3=B5=EC=82=AC=EC=8B=9C?= =?UTF-8?q?=20=ED=92=88=EB=AA=85=EC=97=90=20=EB=B9=88=EC=B9=B8=EC=9D=B4=20?= =?UTF-8?q?=EC=9E=88=EB=8A=94=20=EA=B2=BD=EC=9A=B0=20=ED=92=88=EB=AA=85?= =?UTF-8?q?=EA=B2=80=EC=82=AC=20=EC=98=A4=EB=A5=98=EA=B0=80=20=EB=B0=98?= =?UTF-8?q?=EB=B3=B5=EC=A0=81=EC=9C=BC=EB=A1=9C=20=EB=B0=9C=EC=83=9D?= =?UTF-8?q?=ED=95=A8(=EC=8B=AC=EB=91=90=EC=84=AD)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project/Properties/AssemblyInfo.cs | 4 ++-- SubProject/FEQ0000/Purchase/fPurchase_Add.cs | 9 ++++++--- SubProject/FEQ0000/PurchaseCR/fPurchaseCR_Add.cs | 6 +++--- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Project/Properties/AssemblyInfo.cs b/Project/Properties/AssemblyInfo.cs index 4782142..0db2b53 100644 --- a/Project/Properties/AssemblyInfo.cs +++ b/Project/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로 // 지정되도록 할 수 있습니다. // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("23.08.09.1410")] -[assembly: AssemblyFileVersion("23.08.09.1410")] +[assembly: AssemblyVersion("23.08.16.0830")] +[assembly: AssemblyFileVersion("23.08.16.0830")] diff --git a/SubProject/FEQ0000/Purchase/fPurchase_Add.cs b/SubProject/FEQ0000/Purchase/fPurchase_Add.cs index 49be5d7..2fbefe2 100644 --- a/SubProject/FEQ0000/Purchase/fPurchase_Add.cs +++ b/SubProject/FEQ0000/Purchase/fPurchase_Add.cs @@ -267,12 +267,15 @@ namespace FEQ0000 //복사된 자료는 isd가 잇으면 sid가 잇다면 자동 처리해준다. if (tbSID.Text.StartsWith("10") && tbSID.TextLength == 9) - dbchk1 = tbPumName.Text; + { + //sidchk1 = tbSID.Text; + dbchk1 = tbPumName.Text.Trim(); + } } else { - sidchk1 = tbSID.Text; - dbchk1 = tbPumName.Text; + sidchk1 = tbSID.Text.Trim(); + dbchk1 = tbPumName.Text.Trim(); } timer1.Start(); diff --git a/SubProject/FEQ0000/PurchaseCR/fPurchaseCR_Add.cs b/SubProject/FEQ0000/PurchaseCR/fPurchaseCR_Add.cs index c04e4a1..29f4eb1 100644 --- a/SubProject/FEQ0000/PurchaseCR/fPurchaseCR_Add.cs +++ b/SubProject/FEQ0000/PurchaseCR/fPurchaseCR_Add.cs @@ -304,12 +304,12 @@ namespace FEQ0000 //복사된 자료는 isd가 잇으면 sid가 잇다면 자동 처리해준다. if (tbSID.Text.StartsWith("10") && tbSID.TextLength == 9) - dbchk1 = tbPumName.Text; + dbchk1 = tbPumName.Text.Trim(); } else { - sidchk1 = tbSID.Text; - dbchk1 = tbPumName.Text; + sidchk1 = tbSID.Text.Trim(); + dbchk1 = tbPumName.Text.Trim(); }