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

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

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