Skip to main content

system.kanoa.lot.adjustLotEventQty

This function is part of the kanoaOPS module

Description

Adjusts a lot event qty by the amount passed in deltaQty

Syntax

addLot(lotInfo, userId)
  • Parameters
      lotEventId (int)
      deltaQty (float)
      userId (int)
  • Returns
      # 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)
    >