gaoluyang
2 天以前 a00484ae729aed9a664050362fa2b8c6a4ce4fd6
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
// 库存管理
import request from '@/utils/request'
 
// 查询待入库管理列表
export function pendingInventoryList(query) {
    return request({
        url: '/pendingInventory/list',
        method: 'get',
        params: query
    })
}
// 查询正式入库管理列表
export function officialInventoryList(query) {
    return request({
        url: '/officialInventory/list',
        method: 'get',
        params: query
    })
}
// All煤质方案查询
export function coalPlanList(query) {
    return request({
        url: '/coalPlan/coalPlanList',
        method: 'get',
        params: query
    })
}
// All煤质维护字段查询
export function coalFieldList(query) {
    return request({
        url: '/coalField/coalFieldList',
        method: 'get',
        params: query
    })
}
// 审核入库
export function addOrEditCoalValue(query) {
    return request({
        url: '/pendingInventory/addOrEditCoalValue',
        method: 'post',
        data: query
    })
}
// 根据id查询煤质方案查询
export function coalPlanById(query) {
    return request({
        url: '/coalPlan/coalPlanById',
        method: 'get',
        params: query
    })
}
// 提交合并
export function merge(query) {
    return request({
        url: '/officialInventory/merge',
        method: 'post',
        data: query
    })
}
// 正式库存编辑
export function editOfficial(query) {
    return request({
        url: '/officialInventory/editOfficial',
        method: 'post',
        data: query
    })
}