Skip to main content

system.kanoa.lot.updateLotOperationField

This function is part of the kanoaOPS module

Description

Updates the value of a specified field for a given lot operation ID.

Syntax

updateLotOperationField(lotOperationId, field, value, userId)
  • Parameters
      lotOperationId (int)
      field (string): Name of the column to be updated
      value (pyObject): New value for the specified field
      userId(int)
  • Returns
      Number of records modified (int)
      message (string): None if success
  • Code Examples

    # Example usage
    >lotOperationId = 1
    >field = 'enabled'
    >value = True
    >userId = 5
    >retVal, msg = system.kanoa.lot.updateLotOperationField(lotOperationId, field, value, userId)
    >print(retVal) # Print the number of records modified