周宾
5 小时以前 5392dc649209ff372ec276aa6cbf86b16b12a375
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
// 巡检上传
import request from "@/utils/request";
 
// 采购入库列表
export function listPage(query) {
  return request({
    url: "/stockin/listPage",
    method: "get",
    params: query,
  });
}
//自定义入库列表
export function listPageByCustom(query) {
  return request({
    url: "/stockin/listPageByCustom",
    method: "get",
    params: query,
  });
}
//新增自定义入库
// 获取用户信息
export function addCustom(query) {
  return request({
    url: "/stockin/addCustom",
    method: "post",
    data: query,
  });
}
 
// 删除自定义入库
export function deleteCustom(query) {
  return request({
    url: "/stockin/deleteCustom",
    method: "delete",
    data: query,
  });
}
 
//删除采购入库
export function stockinDel(query) {
  return request({
    url: "/stockin/del",
    method: "post",
    data: query,
  });
}
export function detailManagementByCustom(query) {
  return request({
    url: "/stockin/detailManagementByCustom",
    method: "get",
    params: query,
  });
}
// 采购入库-详情
export function stockinDetail(query) {
  return request({
    url: "/stockin/detail",
    method: "get",
    params: query,
  });
}
 
export function ledgerListPage(query) {
  return request({
    url: "/purchase/ledger/listPage",
    method: "get",
    params: query,
  });
}
 
export function productlist(query) {
  return request({
    url: "/stockin/productlist",
    method: "get",
    params: query,
  });
}
export function stockinAdd(query) {
  return request({
    url: "/stockin/add",
    method: "post",
    data: query,
  });
}
export function stockinUpdate(query) {
  return request({
    url: "/stockin/update",
    method: "post",
    data: query,
  });
}