arrivalList-api.js
1.27 KB
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
import request from "@/utils/request";
// /exportArrivalIn/getExportArrivalInList
export function getExportArrivalInList(data) {
return request({
url: "/bus-customer/exportArrivalIn/getExportArrivalInList",
method: "post",
data: data,
});
}
// GET /exportArrivalIn/receipt/{copNo} 运抵单回执
export function getExportArrivalInReceipt({ copNo }) {
return request({
url: `/bus-customer/exportArrivalIn/receipt/${copNo}`,
method: "get",
});
}
// GET /exportArrivalIn/details/{id} 查询运抵单详情
export function getExportArrivalInDetails({ id }) {
return request({
url: `/bus-customer/exportArrivalIn/details/${id}`,
method: "get",
});
}
// /hsCodeMgr/getHsCodeList
export function getHsCodeList(data) {
return request({
url: "/bus-customer/hsCodeMgr/getHsCodeList",
method: "post",
data: data,
});
}
// GET
// /hsCodeMgr/hsCodeIncr
// 增量数据同步
export function getHsCodeIncr() {
return request({
url: "/bus-customer/hsCodeMgr/hsCodeIncr",
method: "get",
});
}
// GET
// /hsCodeMgr/singleSync/{id}
// 单条hsCode同步更新;
export function getHsCodeSingleSync({ id }) {
return request({
url: `/bus-customer/hsCodeMgr/singleSync/${id}`,
method: "get",
});
}