system.kanoa.lot.adjustLotEventQty
Description
Adjusts a lot event qty by the amount passed in deltaQtySyntax
addLot(lotInfo, userId)- lotEventId (int)
- deltaQty (float)
- userId (int)
- # of records modified (int)
- message (string): None if success
Code Examples
# Example usage
lotEventId = 237
deltaQty = 37.2
userId = 5
retVal, msg = system.kanoa.lot.adjustLotEventQty(lotEventId, deltaQty, userId)
>