You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
77 lines
1.6 KiB
import request from '@/utils/request'
|
|
|
|
// 查询待锁定的物料信息
|
|
export function getwaitForLockList(data) {
|
|
return request({
|
|
url: '/wms/lock/getwaitForLockList',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//查询待锁定的物料明细信息
|
|
export function getwaitForLockDtlList(data) {
|
|
return request({
|
|
url: '/wms/lock/getwaitForLockDtlList',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//锁定库存列表
|
|
export function getBusinLockstockSum(data) {
|
|
return request({
|
|
url: '/wms/lock/getBusinLockstockSum',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//锁定库存详情
|
|
export function getBusinLockstockDtlByLockNo(data) {
|
|
return request({
|
|
url: '/wms/lock/getBusinLockstockDtlByLockNo',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//锁定库存
|
|
export function lockStockQty(data) {
|
|
return request({
|
|
url: '/wms/lock/lockStockQty',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//解锁库存
|
|
export function unLockStockQty(data) {
|
|
return request({
|
|
url: '/wms/lock/unLockStockQty',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
//锁定库存出库列表
|
|
export function getLockstockOutList(data) {
|
|
return request({
|
|
// url: '/wms/lock/getLockstockOutList',
|
|
url: 'wms/stock/lock/getLockstockOutList',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//批次下拉数据
|
|
export function getLockstockBatch(data) {
|
|
return request({
|
|
url: '/wms/lock/getLockstockBatch',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
|
|
//叫料确认
|
|
export function addLockstockOut(data) {
|
|
return request({
|
|
url: '/wms/lock/addLockstockOut',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
} |