更新物料、仓库、班组

This commit is contained in:
2024-08-12 14:03:47 +08:00
parent 22ca86e0fa
commit 48c678d260
59 changed files with 20100 additions and 9786 deletions

View File

@@ -25,6 +25,22 @@ export function outWarehouseRealtimeLocation(data) {
data: data
})
}
// 出入库-有库位 > 移库操作
export function moveWarehouseRealtimeLocation(data) {
return request({
url: '/extend/warehouse-realtime-location/move',
method: 'post',
data: data
})
}
// 出入库-有库位 > 批量出库操作
export function outWarehouseRealtimeLocationList(data) {
return request({
url: '/extend/warehouse-realtime-location/outList',
method: 'post',
data: data
})
}
// 出入库-有库位 > 入库操作
export function inWarehouseRealtimeLocation(data) {
@@ -68,7 +84,16 @@ export function getWarehouseRealtimeLocationPage(data) {
// 获得出入库历史-有库位分页
export function getWarehouseLocationHisPage(data) {
return request({
url: '/extend/warehouse-location-his/page',
url: '/extend/warehouse-location-his/inAndOutPage',
method: 'post',
data: data
})
}
// 获得移库历史-有库位分页
export function getMoveHisPage(data) {
return request({
url: '/extend/warehouse-location-his/movePage',
method: 'post',
data: data
})