抛光仓库功能

This commit is contained in:
2024-07-26 17:33:24 +08:00
parent 0c7fe4e059
commit a4d6d3efbc
4 changed files with 246 additions and 101 deletions

View File

@@ -76,4 +76,40 @@ export function doWmPolishWarehousing(data) {
method: 'post',
data: data,
})
}
/**
* 抛光库手动出库
* @param data
*/
export function doWmPolishRetrieval(data) {
return request({
url: '/mes/wm/WmPolishInventory/doWmPolishRetrieval',
method: 'post',
data: data,
})
}
/**
* 抛光库盘点
* @param data
*/
export function doWmPolishStocktaking(data) {
return request({
url: '/mes/wm/WmPolishInventory/doWmPolishStocktaking',
method: 'post',
data: data,
})
}
/**
* 抛光库操作记录
* @param data
*/
export function getWmPolishRecordList(query) {
return request({
url: '/mes/wm/WmPolishRecord/list',
method: 'get',
params: query,
})
}