모델 코드(A~) 부터 문자열로 인식되기 위해 기존의 serialPackCompare() 쿼리문에 ' ' 추가

This commit is contained in:
hyelinjung 2026-01-09 10:45:53 +09:00
parent d4ba4afe2e
commit 0c36c5c15c

View File

@ -8,7 +8,7 @@ Imports Newtonsoft.Json.Linq
Public Class mainForm
Public projectName As String = "OrderPackingProcessor Ver."
Public projectVer As String = "3.0.1"
Public projectVer As String = "3.0.2"
Private apiItemOutURL As String = "item-outflows/page"
@ -1880,7 +1880,7 @@ Public Class mainForm
Return False
End If
DBCmd = "SELECT SalesPackingSerialColNm FROM " & applyPlistDB & " WHERE ModelNum = " & modelNum & " AND TypeNum = " & typeNum & " GROUP BY ProdCode"
DBCmd = "SELECT SalesPackingSerialColNm FROM " & applyPlistDB & " WHERE ModelNum = '" & modelNum & "' AND TypeNum = " & typeNum & " GROUP BY ProdCode"
If DBQueryReader(DBCmd) Then
commandStr = sqlDataQuery(0)
Else