spring
9 天以前 2b1cc85f7f9755fad9f7b3774f87c6a5bdbe70cb
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
import request from "@/utils/request";
 
// 出库台账-采购出库查询出库列表
export const getStockOutPage = (params) => {
    return request({
        url: "/stockOutRecord/listPage",
        method: "get",
        params,
    });
};
 
//删除出库信息
export const delStockOut = (ids) => {
    return request({
        url: "/stockOutRecord",
        method: "delete",
        data: ids,
    });
}
 
// 编辑出库(库存台账编辑)
export const editStockOut = (data) => {
    return request({
        url: "/stockOutRecord/editStockOut",
        method: "post",
        data,
    });
}