wyg
2024-06-18 1308d4d7a162d3cabd0fe4f639b6d7f5dd376584
提交 | 用户 | 时间
bdd09a 1 import request from '@/utils/request'
W 2
3 // 查询库位列表
4 export function listLocation(query) {
5   return request({
6     url: '/system/location/list',
7     method: 'get',
8     params: query
9   })
10 }
11
12 // 查询库位详细
13 export function getLocation(locationId) {
14   return request({
15     url: '/system/location/' + locationId,
16     method: 'get'
17   })
18 }
19
20 // 新增库位
21 export function addLocation(data) {
22   return request({
23     url: '/system/location',
24     method: 'post',
25     data: data
26   })
27 }
28
29 // 修改库位
30 export function updateLocation(data) {
31   return request({
32     url: '/system/location',
33     method: 'put',
34     data: data
35   })
36 }
37
38 // 删除库位
39 export function delLocation(locationId) {
40   return request({
41     url: '/system/location/' + locationId,
42     method: 'delete'
43   })
44 }
1308d4 45
W 46
47
48
49 // 查询工厂仓库列表
50 export function listWaresList() {
51   return request({
52     url: 'system/warehouse/listWerks',
53     method: 'get',
54   })
55 }
56
57
58
59 // 查询工厂列表
60 export function listwerkshouse(query) {
61   return request({
62     url: '/system/werks/list',
63     method: 'get',
64     params: query
65   })
66 }