신규 구성품 추가 : L004-0089, L004-0090, P001-0171, L004-0091
This commit is contained in:
parent
ac895bb01d
commit
fdd5797605
@ -1700,6 +1700,10 @@ Public Class mainForm
|
||||
, BeautykitHairbandCnt
|
||||
, BeautykitMirrorSCnt
|
||||
, BeautykitMirrorLCnt
|
||||
, BloomingMoistureGel150Cnt
|
||||
, FirmingCollagenGel150Cnt
|
||||
, TweedCaseCnt
|
||||
, BloomingMoistureGel250Cnt
|
||||
FROM " & applySalesDB & " WHERE PackingCode = '" & playCode & "'" '신규구성품추가 : 자동화동작(무게측정)에서 포장 구성품 수량 조회 추가
|
||||
|
||||
If DBQueryReader(DBCmd) Then
|
||||
@ -2701,6 +2705,7 @@ Public Class mainForm
|
||||
|
||||
txbPacking.Text = packingCode
|
||||
|
||||
' 무게측정
|
||||
If weightRun() = False Then
|
||||
Return False
|
||||
End If
|
||||
@ -2925,8 +2930,12 @@ Public Class mainForm
|
||||
", KeyringSallyCnt = '" & comInCount(comDB.keyringSally) & "'" &
|
||||
", BeautykitHairbandCnt = '" & comInCount(comDB.beautykitHairband) & "'" &
|
||||
", BeautykitMirrorSCnt = '" & comInCount(comDB.beautykitMirrorS) & "'" &
|
||||
", BeautykitMirrorLCnt = '" & comInCount(comDB.beautykitMirrorL) & "'" & '신규구성품추가/신규제품추가 : 추가한 품목 수량 업데이트 추가
|
||||
" WHERE PackingCode = '" & packingCode & "'"
|
||||
", BeautykitMirrorLCnt = '" & comInCount(comDB.beautykitMirrorL) & "'" &
|
||||
", BloomingMoistureGel150Cnt = '" & comInCount(comDB.bloomingMoistureGel150) & "'" &
|
||||
", FirmingCollagenGel150Cnt = '" & comInCount(comDB.firmingCollagenGel150) & "'" &
|
||||
", TweedCaseCnt = '" & comInCount(comDB.tweedCase) & "'" &
|
||||
", BloomingMoistureGel250Cnt = '" & comInCount(comDB.bloomingMoistureGel250) & "'" &
|
||||
" WHERE PackingCode = '" & packingCode & "'" '신규구성품추가/신규제품추가 : 추가한 품목 수량 업데이트 추가
|
||||
|
||||
If DBCommand(DBCmd) = False Then
|
||||
errorOut("등록오류")
|
||||
@ -3380,6 +3389,10 @@ Public Class mainForm
|
||||
, BeautykitHairbandCnt
|
||||
, BeautykitMirrorSCnt
|
||||
, BeautykitMirrorLCnt
|
||||
, BloomingMoistureGel150Cnt
|
||||
, FirmingCollagenGel150Cnt
|
||||
, TweedCaseCnt
|
||||
, BloomingMoistureGel250Cnt
|
||||
FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 일반동작 수량 조회 추가
|
||||
countCommandFunc(countSaveList.normal)
|
||||
Else
|
||||
@ -3504,6 +3517,10 @@ Public Class mainForm
|
||||
, APBeautykitHairbandCnt
|
||||
, APBeautykitMirrorSCnt
|
||||
, APBeautykitMirrorLCnt
|
||||
, APBloomingMoistureGel150Cnt
|
||||
, APFirmingCollagenGel150Cnt
|
||||
, APTweedCaseCnt
|
||||
, APBloomingMoistureGel250Cnt
|
||||
FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 자동화동작(포장) 수량 조회 추가
|
||||
countCommandFunc(countSaveList.autopack)
|
||||
Else
|
||||
@ -3627,6 +3644,10 @@ Public Class mainForm
|
||||
, AWBeautykitHairbandCnt
|
||||
, AWBeautykitMirrorSCnt
|
||||
, AWBeautykitMirrorLCnt
|
||||
, AWBloomingMoistureGel150Cnt
|
||||
, AWFirmingCollagenGel150Cnt
|
||||
, AWTweedCaseCnt
|
||||
, AWBloomingMoistureGel250Cnt
|
||||
FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 자동화동작(무게측정) 수량 조회 추가
|
||||
countCommandFunc(countSaveList.autoWeight)
|
||||
End If
|
||||
|
||||
@ -187,6 +187,10 @@
|
||||
beautykitHairband
|
||||
beautykitMirrorS
|
||||
beautykitMirrorL
|
||||
bloomingMoistureGel150
|
||||
firmingCollagenGel150
|
||||
tweedCase
|
||||
bloomingMoistureGel250
|
||||
'신규구성품추가 : 추가하는 품목의 변수 추가
|
||||
End Enum
|
||||
Public comDB_max_index As Integer = [Enum].GetNames(GetType(comDB)).Length - 1
|
||||
@ -344,6 +348,10 @@
|
||||
countCommand(prodInCount.Length + comDB.beautykitHairband) = "BeautykitHairbandCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "BeautykitMirrorSCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "BeautykitMirrorLCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "BloomingMoistureGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "FirmingCollagenGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.tweedCase) = "TweedCaseCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "BloomingMoistureGel250Cnt"
|
||||
'신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 일반동작 컬럼명 추가
|
||||
|
||||
Case countSaveList.autopack
|
||||
@ -466,6 +474,10 @@
|
||||
countCommand(prodInCount.Length + comDB.beautykitHairband) = "APBeautykitHairbandCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "APBeautykitMirrorSCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "APBeautykitMirrorLCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "APBloomingMoistureGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "APFirmingCollagenGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.tweedCase) = "APTweedCaseCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "APBloomingMoistureGel250Cnt"
|
||||
'신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(포장) 컬럼명 추가
|
||||
|
||||
Case countSaveList.autoWeight
|
||||
@ -588,6 +600,10 @@
|
||||
countCommand(prodInCount.Length + comDB.beautykitHairband) = "AWBeautykitHairbandCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "AWBeautykitMirrorSCnt"
|
||||
countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "AWBeautykitMirrorLCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "AWBloomingMoistureGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "AWFirmingCollagenGel150Cnt"
|
||||
countCommand(prodInCount.Length + comDB.tweedCase) = "AWTweedCaseCnt"
|
||||
countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "AWBloomingMoistureGel250Cnt"
|
||||
'신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(무게측정) 컬럼명 추가
|
||||
|
||||
End Select
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user