liuying
2024-04-24 b2a6f930a92dd88ac997d6c88518bdfff80fefe3
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import { axios } from '@/utils/request'
 
/**
 * 查询组盘入库
 *
 * @author liduanping
 */
export function BindEntrancePage (parameter) {
  return axios({
    url: '/BindEntrance/page',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 组盘入库列表
 *
 * @author liduanping
 */
export function BindEntranceList (parameter) {
  return axios({
    url: '/BindEntrance/list',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 手动入库
 *
 * @author yhh
 */
export function BindEntranceManualWare (parameter) {
  return axios({
    url: '/BindEntrance/ManualWare',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 自动入库
 *
 * @author yhh
 */
export function BindEntranceAutoWare (parameter) {
  return axios({
    url: '/BindEntrance/AutoWare',
    method: 'post',
    data: parameter
  })
}
 
// 组盘 202311
export function AutoWare (parameter) {
  return axios({
    url: '/bindentrance/AutoWare',
    method: 'post',
    data: parameter
  })
}
 
// 自动入库 202311
export function automaticWarehousing (parameter) {
  return axios({
    url: '/bindentrance/automaticWarehousing',
    method: 'post',
    data: parameter
  })
}
 
 
// 人工入库 202311
export function manualWarehousing (parameter) {
  return axios({
    url: '/bindentrance/manualWarehousing',
    method: 'post',
    data: parameter
  })
}
 
 
// 物料查询 202311
export function MaterialRukuPage (parameter) {
  return axios({
    url: '/bindentrance/GetMaterial?MaterialNo='+parameter.MaterialNo,
    method: 'get',
    data: parameter
  })
}
 
 
/**
 * 获取托盘信息
 *
 * @author yhh
 */
export function BindEntranceGetContainer (parameter) {
  return axios({
    url: '/BindEntrance/GetContainer',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 获取物料信息
 *
 * @author yhh
 */
export function BindEntranceGetMaterial (parameter) {
  return axios({
    url: '/BindEntrance/GetMaterial',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 获取托盘信息-获取物料
 *
 * @author dla
 */
export function BindMixtureGetContainer (parameter) {
  return axios({    
    url: '/BindEntrance/getcontainer',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 组盘接口
 *
 * @author yhh
 */
export function BindAction (parameter) {
  return axios({
    url: '/BindEntrance/BindEntrance',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 移库
 *
 * @author yhh
 */
export function BindEntranceTransfer (parameter) {
  return axios({
    url: '/BindEntrance/StockTransfer',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 获取目标仓库下拉列表
 *
 * @author yhh
 */
export function BindEntranceGetSelects () {
  return axios({
    url: '/BindEntrance/GetAreaList',
    method: 'get'
  })
}