system.kanoa.lot.updateLotAttribute
Description
updates a lot attributeSyntax
updateLotAttribute(lotAttributeInfo, userId)- lotAttributeInfo (dict)
- - lotAttributeId (int)
- - lotId (int)
- - lotAttributeName (string)
- - lotAttributeValue (string)
- userId (int)
- # of records modified (int), msg (string): None if success
Code Examples
lotAttributeInfo = {
'lotAttributeId': 1,
'lotId': 241,
'lotAttributeName': 'testWeight',
'lotAttributeValue': 'testValue'
}
system.kanoa.lot.updateLotAttribute(lotAttributeInfo, 5)
>>>
None
1
>>>