modified barcode verification form and service to force lowercase input to uppercase input to avoid scanning issues

This commit is contained in:
Infineon\StieberD
2025-02-03 14:17:54 -07:00
parent 44292564f5
commit fcc0ce6b72
2 changed files with 5 additions and 4 deletions

View File

@ -85,7 +85,8 @@ Options SCAN_TYPES = 'CASSETTE_1', 'CASSETTE_2', 'WM_IN_1', 'WM_IN_2'
//----------------------------------------------------------------------------------------------------------------------
Service ProcessScanData(ScanData, ScanType = SCAN_TYPES, FirstCassID, OperatorID)
If (ScanData NE '') then
If (ScanData NE '') then
Convert @Lower.Case to @Upper.Case in ScanData
// Code 3of9 encodes the asterisk and underscore characters. These need to be decoded.
ScanData = Scan_Services('DecodeScanData', ScanData)