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
| import {request} from '../../utils/request.js'
|
| export function getLocationDetails(data){ //查询库位
| return request({
| url: `/CriterionEnterWare/getLocationDetails?locationCode=${data}`,
| method: 'post',
| contentType:'application/json'
| })
| }
| //确认入库
| export function entryConfirm(data){
| return request({
| url: `/CriterionEnterWare/updateFlatWarehouseWarehousing`,
| method: 'post',
| data
| })
| }
|
| //获取库位详情
| export function getLocationDetail(code){ //查询库位
| return request({
| url: `/WareLocation/page?Code=${code}&PageNo=1&PageSize=10`,
| method: 'get'
| })
| }
|
|