fix(wms): 调整文档的最新内容

wms
YunaiV 2026-05-15 09:46:40 +08:00
parent 7bae330828
commit 5f944548a3
1 changed files with 5 additions and 0 deletions

View File

@ -22,5 +22,10 @@ export const InventoryApi = {
// 查询库存统计分页
getInventoryPage: async (params: any) => {
return await request.get({ url: '/wms/inventory/page', params })
},
// 查询指定仓库的库存统计列表
getInventoryListByWarehouseId: async (warehouseId: number) => {
return await request.get({ url: '/wms/inventory/list-by-warehouse-id', params: { warehouseId } })
}
}