Merged PR 27478: Changed the comparison operator to force the values to be looked at as a string
Changed the comparison operator to force the values to be looked at as a string
This commit is contained in:
parent
baa9af3e1a
commit
705237545f
@ -990,7 +990,7 @@ Service ProcessScanData(ScanID, ScanJSON)
|
|||||||
ScannedSuppLot = ScansRow<SCANS.SUPPLIER_LOT$>
|
ScannedSuppLot = ScansRow<SCANS.SUPPLIER_LOT$>
|
||||||
RDSSuppLot = RDSRec<RDS_LOT_NUM$>
|
RDSSuppLot = RDSRec<RDS_LOT_NUM$>
|
||||||
If (ScannedSuppLot NE '') then
|
If (ScannedSuppLot NE '') then
|
||||||
If (ScannedSuppLot _EQC RDSSuppLot) then
|
If (ScannedSuppLot _EQSC RDSSuppLot) then
|
||||||
IsTWLoggingReqd = RDS_Services('IsTWLoggingReqd', RDSNo)
|
IsTWLoggingReqd = RDS_Services('IsTWLoggingReqd', RDSNo)
|
||||||
If IsTWLoggingReqd NE True$ OR TestWaferLotData NE '' then
|
If IsTWLoggingReqd NE True$ OR TestWaferLotData NE '' then
|
||||||
WaferCountAckReq = Xlate('RDS', RDSNo, 'WAFER_COUNT_ACK_REQ', 'X')
|
WaferCountAckReq = Xlate('RDS', RDSNo, 'WAFER_COUNT_ACK_REQ', 'X')
|
||||||
@ -1068,7 +1068,7 @@ Service ProcessScanData(ScanID, ScanJSON)
|
|||||||
ScannedSuppLot = ScansRow<SCANS.SUPPLIER_LOT$>
|
ScannedSuppLot = ScansRow<SCANS.SUPPLIER_LOT$>
|
||||||
RDSSuppLot = RDSRec<RDS_LOT_NUM$>
|
RDSSuppLot = RDSRec<RDS_LOT_NUM$>
|
||||||
If (ScannedSuppLot NE '') then
|
If (ScannedSuppLot NE '') then
|
||||||
If (ScannedSuppLot _EQC RDSSuppLot) then
|
If (ScannedSuppLot _EQSC RDSSuppLot) then
|
||||||
IsTWLoggingReqd = RDS_Services('IsTWLoggingReqd', RDSNo)
|
IsTWLoggingReqd = RDS_Services('IsTWLoggingReqd', RDSNo)
|
||||||
If IsTWLoggingReqd NE True$ OR TestWaferLotData NE '' then
|
If IsTWLoggingReqd NE True$ OR TestWaferLotData NE '' then
|
||||||
// Scheduled tool verification (only supports reactors at the moment)
|
// Scheduled tool verification (only supports reactors at the moment)
|
||||||
|
Reference in New Issue
Block a user