gaoluyang
6 天以前 5929167e8fb9577df9502ba091e7c8071e79b717
src/api/inventoryManagement/stockIn.js
@@ -18,10 +18,18 @@
    });
};
// 出库台账-查询手动入库信息列表
// 出库台账-查询自定义入库信息列表
export const getStockInPageByCustom = (params) => {
    return request({
        url: "/stockmanagement/listPageByCustom",
        method: "get",
        params,
    });
};
// 入库管理-查询自定义入库信息列表
export const getInPageByCustom = (params) => {
    return request({
        url: "/stockin/listPageByCustom",
        method: "get",
        params,
    });
@@ -53,6 +61,14 @@
        data,
    });
};
// 修改材料库存信息
export const updateManagementByCustom = (data) => {
    return request({
        url: "/stockin/updateManagementByCustom ",
        method: "post",
        data,
    });
};
// 新增商品入库信息
export function addSutockIn(data) {
@@ -63,7 +79,7 @@
    })
}
// 新增手动入库信息
// 新增自定义入库信息
export function addStockInCustom(data) {
    return request({
        url: '/stockin/addCustom',
@@ -72,10 +88,18 @@
    })
}
// 编辑手动入库信息
// 编辑自定义入库信息
export function updateStockInCustom(data) {
    return request({
        url: '/stockin/updateCustom',
        method: 'post',
        data: data
    })
}
// 编辑成品入库信息
export function updateProduct(data) {
    return request({
        url: '/stockin/update',
        method: 'post',
        data: data
    })
@@ -90,7 +114,7 @@
    })
}
// 删除手动入库信息
// 删除自定义入库信息
export function delStockInCustom(ids) {
    return request({
        url: '/stockin/delteCustom',