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
| // 库存报表
| import request from "@/common/untils/request.js"
|
|
| // 获取库存报表
| export function getInventoryData(data) {
| return request({
| url: "/api-wms/v1/forms/getInventoryForms",
| method: "post",
| data
| })
| }
|
| // 仓库类型列表
| export const getWarehouseList = (data) => {
| return request({
| url: "/api-wms/v1/warehouse/warehouse",
| method: "get",
| params: data
| })
| }
|
| // 产品类型列表
| export function getProductCategoryList(data) {
| return request({
| url: "/api-wms/v1/product/getProductCategoryList",
| method: "post",
| data
| })
| }
|
| //报表历史
| export function getHistory(data) {
| return request({
| url: "/api-wms/v1/forms/getHistory",
| method: "post",
| data
| })
| }
| // 出入库明细
| export function listByCondition(data) {
| return request({
| url: "/api-wms/v1/operation/listByCondition",
| method: "post",
| data
| })
| }
| //查询单条详情接口
| export function getOperationInfo(data) {
| return request({
| url: `/api-wms/v1/operation/getOperationInfo/${data}`,
| method: "get",
| data
| })
| }
| // 月度统计报表
| export function getmonthStats(data) {
| return request({
| url: "/api-wms/v1/forms/monthStats",
| method: "post",
| data
| })
| }
|
|