system.kanoa.lot.updateLotOperationEvent(lotOperationEventInfo, userId)
Updates a lot operation event
Parameters
lotOperationEventInfo Dictionary
| - assetId | Integer | |
| - enabled | Boolean | |
| - lotOperationEventId | Integer | |
| - lotOperationId | Integer | |
| - tStamp | Integer | 
userId Integer
Returns
# of records modified Integer
message String None if success
Example
lotOperationEventInfo = {
                            'lotOperationEventId;: 6, 
                            'lotOperationId': 1, 
                            'assetId': 18, 
                            'tStamp': system.date.now(), 
                            'enabled': True
                        }
userId = 5
retVal, msg = system.kanoa.lot.updateLotOperationEvent(lotOperationEventInfo, userId)