zhangwencui
5 天以前 f44afe15f9f6e34386c0dddf78da26175d8b94e3
src/api/inventoryManagement/stockInventory.js
@@ -13,7 +13,7 @@
    return request({
        url: "/stockInventory/addstockInventory",
        method: "post",
        params,
        data: params,
    });
};
@@ -22,6 +22,41 @@
    return request({
        url: "/stockInventory/subtractStockInventory",
        method: "post",
        data: params,
    });
};
export const getStockInventoryReportList = (params) => {
    return request({
        url: "/stockInventory/stockInventoryPage",
        method: "get",
        params,
    });
};
export const getStockInventoryInAndOutReportList = (params) => {
    return request({
        url: "/stockInventory/stockInAndOutRecord",
        method: "get",
        params,
    });
};
// 冻结库存记录
export const frozenStockInventory = (params) => {
    return request({
        url: "/stockInventory/frozenStock",
        method: "post",
        data: params,
    });
};
// 解冻库存记录
export const thawStockInventory = (params) => {
    return request({
        url: "/stockInventory/thawStock",
        method: "post",
        data: params,
    });
};