Hi,
We are not having any issues with this.
Steps taken:
1. Create Lot/Serial with "Assignment method": "Used"
2. Create item using lot class
3. Create salesOrder in UI with 3 of above item
4. Create shipment from salesOrder via UI (Shipped qty is at this point already 3)
5. PUT shipment:
{ "shipmentDetailLines": [{
"operation": "Update",
"lineNumber": {
"Value": 1
},
"allocations": [{
"operation": "Insert",
"lineNbr": {
"Value": 2
},
"quantity": {
"Value": 1
},
"lotSerialNumber": {
"value": "133"
}
},
{
"operation": "Insert",
"lineNbr": {
"Value": 3
},
"quantity": {
"Value": 1
},
"lotSerialNumber": {
"value": "134"
}
},
{
"operation": "Insert",
"lineNbr": {
"Value": 4
},
"quantity": {
"Value": 1
},
"lotSerialNumber": {
"value": "135"
}
}]
}]
}
Result:
... View more