품목복사시 품명에 빈칸이 있는 경우 품명검사 오류가 반복적으로 발생함(심두섭)

This commit is contained in:
chi
2023-08-16 08:43:01 +09:00
parent 940b51b2e8
commit 40112e039f
3 changed files with 11 additions and 8 deletions

View File

@@ -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")]

View File

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

View File

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