This commit is contained in:
qsh
2024-06-28 11:24:27 +08:00
parent 31f028d8d8
commit fa2481ea3d
7 changed files with 65 additions and 53 deletions

View File

@@ -38,3 +38,8 @@ export const getInventoryList = async (params) => {
export const getInventoryRecord = async (params) => {
return await request.get({ url: '/admin-api/crm/erp-inventory-record/page', params })
}
// 获取剩余库存
export const getRemainInventoryList = async (params) => {
return await request.get({ url: '/admin-api/crm/erp-inventory-detail/list', params })
}