2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00

Helper funcs for updating part and stock item

This commit is contained in:
Oliver 2018-05-05 01:37:21 +10:00
parent 24ece1b916
commit 22e9290f54

View File

@ -85,4 +85,12 @@ function getStockLocations(filters={}) {
function getCompanies(filters={}) {
return inventreeGet('/api/company/', filters);
}
function updateStockItem(pk, data, final=false) {
return inventreeUpdate('/api/stock/' + pk + '/', data, final);
}
function updatePart(pk, data, final=false) {
return inventreeUpdate('/api/part/' + pk + '/', data, final);
}