feat(wms): 新增钢卷物料管理功能

添加钢卷物料管理的API接口和前端页面,包括查询、新增、修改、删除和导出功能
This commit is contained in:
砂糖
2025-10-28 19:01:57 +08:00
parent 22895d3513
commit 5f9f395193
3 changed files with 476 additions and 0 deletions

View File

@@ -53,3 +53,12 @@ export function getStockTrace(batchNo) {
}
})
}
// 查询库存分布, 传入itemId和itemType查询库存总量和在各个库存的分布数量
export function getStockDistribution(params) {
return request({
url: '/wms/stock/distribution',
method: 'get',
params
})
}