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
| import {request} from '../../utils/request.js'
| export function getWarehouseMaterial(data){ //查询物料
| return request({
| url: `/CriterionEnterWare/getWarehouseMaterial?containerCode=${data}`,
| method: 'post',
| contentType:'application/json'
| })
| }
| export function addWarehouseEstablishment(data){ //入库
| return request({
| url: `/CriterionEnterWare/addWarehouseEstablishment`,
| method: 'post',
| data
| })
| }
| export function list(data){ //入库口
| return request({
| url: `/WareSite/pageWarehousing`,
| method: 'get',
| contentType:'application/json',
| data: data
| })
| }
| export function outlist(data){ //出库口
| return request({
| url: `/WareSite/page`,
| method: 'get',
| contentType:'application/json',
| data: data
| })
| }
|
| //确认出库
| export function outBoundOrder(data) {
| return request({
| url: `/Sorting/UnbindLocation`,
| method: 'post',
| data
| })
| }
|
|