库存欠缺入库测试

This commit is contained in:
2024-11-06 14:50:00 +08:00
parent 57a88d5959
commit 660b2ca640
14 changed files with 278 additions and 81 deletions

View File

@@ -7,6 +7,14 @@ export function listOaOutWarehouse(query) {
method: 'get',
params: query
})
}// 查询仓库出库列表
export function outWareList(query) {
return request({
url: '/oa/project/outWare/list',
method: 'get',
params: query
})
}
// 查询仓库出库详细
@@ -17,6 +25,15 @@ export function getOaOutWarehouse(id) {
})
}
// 查询仓库出库详细
export function queryOutWarehouseByProjectId(id) {
return request({
url: '/oa/oaOutWarehouse/project/' + id,
method: 'get'
})
}
// 新增仓库出库
export function addOaOutWarehouse(data) {
return request({