Enhancement Request: Update Items endpoint to include QuantityCommitted/QuantityAvailable/QuantityOnOrder by location
This is just a simple request foir enhanging the Inventory/Items endpoint to be able to read the quantity committed, available and on order by location.
Sample syntax below
{
"UID" : "d5ab0fd1-3bf4-4230-bbaf-90b26ea9afda",
"Number" : "120",
"Name" : "Cooler Filter Large",
...
"LocationDetails" : [
{
"UID" : "5b854f1f-8921-4ad1-93ee-565b31790334",
"Identifier" : "Location1",
"Name" : "Primary Location",
"URI" : "{cf_uri}Inventory/Location/5b854f1f-8921-4ad1-93ee-565b31790334"
},
"QuantityOnHand" : 133,
"QuantityCommitted" : 0,
"QuantityOnOrder" : 0,
"QuantityAvailable" : 133,
},
{
"UID" : "5b854f1f-8921-4ad1-93ee-565b31790335",
"Identifier" : "Location2",
"Name" : "Secondary Location",
"URI" : "{cf_uri}Inventory/Location/5b854f1f-8921-4ad1-93ee-565b31790335"
},
"QuantityOnHand" : 1,
"QuantityCommitted" : 2,
"QuantityOnOrder" : 2,
"QuantityAvailable" : 1,
},
...