Blame view

src/api/shipment/shippingCombination.js 932 Bytes
yuanshuhui authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import request from '@/utils/request'


// 获取出库组盘单据列表
export function listHeader(query) {
  return request({
    url: '/shipment/shippingCombination',
    method: 'get',
    params: query
  })
}


// 获取能出库的库存列表
魏娟 authored
15
export function listDetail(query) {
yuanshuhui authored
16
17
18
  return request({
    url: '/shipment/shippingCombination/getInventory',
    method: 'get',
魏娟 authored
19
    params: query
yuanshuhui authored
20
21
22
23
24
25
26
27
28
29
30
31
32
  })
}


// 取消组盘
export function delDetail(query) {
  return request({
    url: '/shipment/shippingCombination',
    method: 'delete',
    params: query
  })
}
魏娟 authored
33
34
// 右边操作保存组盘
export function getGroupdisk(query) {
yuanshuhui authored
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  return request({
    url: '/shipment/shippingCombination/Addcombination',
    method: 'post',
    params: query
  })
}

// 自动组盘
export function autoDetail(query) {
  return request({
    url: '/shipment/shippingCombination/autoCombination',
    method: 'post',
    params: query
  })
}
魏娟 authored
50
51
52