Fixed typo in NCR_SERVICES preventing RDS scans from processing correctly. Fixed a vnav in NCR_ACTIONS under the delete action.

This commit is contained in:
Infineon\StieberD
2025-11-14 03:17:55 -07:00
parent 2d58c47c93
commit 165b6cf943
2 changed files with 4 additions and 3 deletions

View File

@ -134,8 +134,8 @@ Service ProcessScanData(ScanData, ScanType = SCAN_TYPES, FirstCassID, OperatorID
Convert '.' to '*' in CassetteID
ValidcassID = RowExists('WM_IN', CassetteID) or RowExists('WM_OUT', CassetteID)
Case RDSCass
RDSRow = Database_Services('ReadDataRow', 'RDS', CassetteID)
ValidCass = RowExists('RDS', CassetteID)
RDSRow = Database_Services('ReadDataRow', 'RDS', CassetteID)
ValidcassID = RowExists('RDS', CassetteID)
End Case
If ( (Seq1 EQ 'SEQ1') or (Seq1 EQ 'SEQ2') ) then
@ -559,3 +559,4 @@ Service ConvertRecordToJson(NCRId)
end service