Merge remote-tracking branch 'origin/0.8.X' into 0.8.X
# Conflicts: # klp-admin/src/main/resources/application-prod.yml
This commit is contained in:
9
klp-ui/src/api/wms/coilComparison.js
Normal file
9
klp-ui/src/api/wms/coilComparison.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getExcoilStatus(query) {
|
||||
return request({
|
||||
url: '/wms/coil-comparison/excoil-status',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
@@ -51,3 +51,14 @@ export function checkReceivePlan(data) {
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 大批量删除应收货物计划明细
|
||||
*/
|
||||
export function delReceivePlanBatch(receiveIdList) {
|
||||
return request({
|
||||
url: '/wms/receivePlan/batchDelete',
|
||||
method: 'delete',
|
||||
data: receiveIdList || []
|
||||
})
|
||||
}
|
||||
|
||||
@@ -126,6 +126,21 @@ export function confirmTransferOrderItem(item) {
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量确认调拨
|
||||
*/
|
||||
export function batchConfirmTransferOrderItem(list) {
|
||||
if (!list || list.length === 0) {
|
||||
return Promise.reject('参数错误')
|
||||
}
|
||||
|
||||
return request({
|
||||
url: '/wms/transferOrderItem/batchConfirm',
|
||||
method: 'post',
|
||||
data: list
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消调拨
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user