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(); }