shippingCombination.js
928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import request from '@/utils/request'
// 获取出库组盘单据列表
export function listHeader(query) {
return request({
url: '/shipment/shippingCombination',
method: 'get',
params: query
})
}
// 获取能出库的库存列表
export function listDetail(query) {
return request({
url: '/shipment/shippingCombination/getInventory',
method: 'get',
params: query
})
}
// 取消组盘
export function delDetail(query) {
return request({
url: '/shipment/shippingCombination',
method: 'delete',
params: query
})
}
// 右边操作保存组盘
export function getGroupdisk(query) {
return request({
url: '/shipment/shippingCombination/Addcombination',
method: 'post',
params: query
})
}
// 自动组盘
export function autoDetail(data) {
return request({
url: '/shipment/shippingCombination/autoCombination',
method: 'post',
data: data
})
}