Merge pull request 'fix: #1 salesPackingTbl 조회 시 null_ prefix 제외 조건 추가' (#2) from fix/packing-already-packed-error into master
Reviewed-on: #2
This commit is contained in:
commit
4bf125a0b5
@ -2037,7 +2037,9 @@ Public Class mainForm
|
|||||||
End Select
|
End Select
|
||||||
End If
|
End If
|
||||||
|
|
||||||
DBCmd = "SELECT COUNT(" & commandStr & ") FROM " & applySalesDB & " WHERE " & commandStr & " LIKE '%" & playCode & "%'"
|
DBCmd = "SELECT COUNT(" & commandStr & ") FROM " & applySalesDB &
|
||||||
|
" WHERE " & commandStr & " LIKE '%" & playCode & "%'" &
|
||||||
|
" AND PackingCode NOT LIKE 'null_%'"
|
||||||
|
|
||||||
If DBQueryScalar(DBCmd) > "0" Or DBQueryScalar(DBCmd) = "False" Then
|
If DBQueryScalar(DBCmd) > "0" Or DBQueryScalar(DBCmd) = "False" Then
|
||||||
If rdbMode2.Checked = True And rdbAuto1.Created = True Then
|
If rdbMode2.Checked = True And rdbAuto1.Created = True Then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user